-
-
Save ingeniarius/703444 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'rack' | |
require 'rubygems' | |
require 'rack' | |
class Object | |
def webapp | |
def call(env) | |
func, *attrs = env['PATH_INFO'].split('/').reject(&:empty?) | |
[200, {}, send(func, *attrs)] | |
end | |
self | |
end | |
end | |
Rack::Handler::Thin.run [].webapp, :Port => 9292 | |
# ^^^^^^^^ | |
# | (x) | |
# ROFLSCALE DB ---/ | |
# | |
# http://localhost:9292/push/1 -> 1 | |
# http://localhost:9292/push/2 -> 12 | |
# http://localhost:9292/push/3 -> 123 | |
# http://localhost:9292/to_a -> 123 | |
# http://localhost:9292/pop -> 3 | |
# http://localhost:9292/shift -> 1 | |
# Implementations in other languages (thanks guys!): | |
# Node.js: https://gist.github.com/700995 | |
# Groovy: https://gist.github.com/702337 | |
# Python: https://gist.github.com/702001 | |
# Great explanation of how this works in Ruby on Stackoverflow: | |
# http://stackoverflow.com/questions/4198883/exposing-any-ruby-object-over-the-web |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment