Class: Soba::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/soba/cli.rb

Instance Method Summary collapse

Instance Method Details

#runObject



5
6
7
8
9
# File 'lib/soba/cli.rb', line 5

def run
  host, port = ARGV
  app = lambda {|env| [200, {'Host' => 'securet'}, "nihaoooo"]}
  Soba::Server.new(app, host, port).run
end