Skip to content

Instantly share code, notes, and snippets.

@spiritbear
Created August 13, 2015 01:13
Show Gist options
  • Select an option

  • Save spiritbear/c8949f7a6be4323a88ab to your computer and use it in GitHub Desktop.

Select an option

Save spiritbear/c8949f7a6be4323a88ab to your computer and use it in GitHub Desktop.
require 'rack'
require 'rack/server'
class RemoteIp
def response
[200, {}, 'Hello World']
end
end
class RemoteIpApp
def self.call(env)
p env
end
end
Rack::Server.start "app" => RemoteIpApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment