First, compile the shim:
gcc -Wall -O2 -fpic -shared -ldl bind.c -o bind.so
Now, run the demo and notice that it does what it looks like it does:
$ LD_PRELOAD=./bind.so ruby demo.rb
#<TCPServer:fd 5, AF_INET, 0.0.0.0, 8888>
Then, set ISOSPIN_NAMESPACE_IP
and try again:
export ISOSPIN_NAMESPACE_IP=127.0.0.1
$ LD_PRELOAD=./bind.so ruby demo.rb
#<TCPServer:fd 5, AF_INET, 127.0.0.1, 8888>