-
-
Save zspencer/1624513 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
#!/usr/bin/env ruby | |
require 'raptor' | |
class Posts | |
end | |
class Users | |
end | |
App = Raptor::App.new([Posts, Users]) | |
App.run Port: 9000 | |
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
module Raptor | |
class App | |
def run options | |
require 'rack' | |
Rack::Handler::WEBrick.run(app, options) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment