Class: Halcyon::Runner

Inherits:
Object
  • Object
show all
Defined in:
lib/halcyon/runner.rb,
lib/halcyon/runner/helpers.rb,
lib/halcyon/runner/commands.rb,
lib/halcyon/runner/helpers/command_helper.rb

Overview

Handles initializing and running the application, including:

  • setting up the logger

  • loading initializers

  • loading controllers

All of which is done by the call to Halcyon::Application.boot.

The Runner is a full-fledged Rack application, and accepts calls to #call.

Also handles running commands form the command line.

Examples

# start serving the current app (in .)
Halcyon::Runner.run!(['start', '-p', '4647'])

# load the config file and initialize the app
Halcyon::Runner.new

Defined Under Namespace

Classes: Commands, Helpers

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(&block) ⇒ Runner

Initializes the application and application resources.



24
25
26
27
# File 'lib/halcyon/runner.rb', line 24

def initialize(&block)
  Halcyon::Application.boot(&block) unless Halcyon::Application.booted
  @app = Halcyon::Application.new
end

Class Method Details

.run!(argv = ARGV) ⇒ Object

Runs commands from the CLI.

+argv+ the arguments to pass to the commands

Returns nothing



43
44
45
# File 'lib/halcyon/runner.rb', line 43

def run!(argv=ARGV)
  Commands.send(argv.shift, argv)
end

Instance Method Details

#call(env) ⇒ Object

Calls the application, which gets proxied to the dispatcher.

+env+ the request environment details

Returns [Fixnum:status, => String:value, [String:body]]



33
34
35
# File 'lib/halcyon/runner.rb', line 33

def call(env)
  @app.call(env)
end