Class: Awestruct::CLI::Server

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, bind_addr = '0.0.0.0', port = 4242) ⇒ Server

Returns a new instance of Server.



10
11
12
13
14
# File 'lib/awestruct/cli/server.rb', line 10

def initialize(path, bind_addr='0.0.0.0', port=4242)
  @path      = path
  @bind_addr = bind_addr
  @port      = port
end

Instance Attribute Details

#serverObject (readonly)

Returns the value of attribute server.



8
9
10
# File 'lib/awestruct/cli/server.rb', line 8

def server
  @server
end

Instance Method Details

#runObject



16
17
18
19
20
21
# File 'lib/awestruct/cli/server.rb', line 16

def run
  ::Rack::Server::start( :app => Awestruct::Rack::App.new( @path ),
                        :Port => @port,
                        :Host => @bind_addr
                       )
end