public
Rubygem
Description: JSON Web App Framework
Homepage: http://halcyon.rubyforge.org/
Clone URL: git://github.com/mtodd/halcyon.git
Click here to lend your support to: halcyon and make a donation at www.pledgie.com !
Prettified docs.
mtodd (author)
Tue Jul 01 15:19:16 -0700 2008
commit  2fec98951cd0bd8c0301178c826cfa4e627abb1f
tree    9e34fbc4c5ef6186ea75cdb0f5ead8d2861c438b
parent  cab63de1e74a787c077fa33bd53ca912afe82309
...
16
17
18
 
19
20
21
22
23
 
24
25
26
...
30
31
32
 
33
34
35
...
40
41
42
 
43
44
45
...
16
17
18
19
20
21
22
23
24
25
26
27
28
...
32
33
34
35
36
37
38
...
43
44
45
46
47
48
49
0
@@ -16,11 +16,13 @@ module Halcyon
0
   #
0
   # # load the config file and initialize the app
0
   # Halcyon::Runner.new
0
+ #
0
   class Runner
0
     
0
     autoload :Commands, 'halcyon/runner/commands'
0
     
0
     # Initializes the application and application resources.
0
+ #
0
     def initialize(&block)
0
       Halcyon::Application.boot(&block) unless Halcyon::Application.booted
0
       @app = Halcyon::Application.new
0
@@ -30,6 +32,7 @@ module Halcyon
0
     # +env+ the request environment details
0
     #
0
     # Returns [Fixnum:status, {String:header => String:value}, [String:body]]
0
+ #
0
     def call(env)
0
       @app.call(env)
0
     end
0
@@ -40,6 +43,7 @@ module Halcyon
0
       # +argv+ the arguments to pass to the commands
0
       #
0
       # Returns nothing
0
+ #
0
       def run!(argv=ARGV)
0
         Commands.send(argv.shift, argv)
0
       end

Comments

    No one has commented yet.