GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
removed offending Dependencies class.
ab5tract (author)
Tue Aug 26 12:48:59 -0700 2008
automatthew (committer)
Wed Sep 03 07:58:43 -0700 2008
commit  5f996c14842e922026b8ce0ebefa794acf22fbed
tree    e011f330852f7b120afe33ca229025e519c74839
parent  c48eb087f3d932ca279599818ff5e16f937e5c1c
...
18
19
20
21
22
23
 
24
25
26
...
18
19
20
 
 
 
21
22
23
24
0
@@ -18,9 +18,7 @@ module <%= @name %>
0
       # handler ::Rack::Handler::WEBrick, :BindAddress => host, :Port => port
0
       # handler ::Rack::Handler::Thin, :Host => host, :Port => port
0
 
0
- # 'deps' lets you easily check the environment for expected dependencies.
0
- # See configurations/dependecies.rb for more info.
0
- deps <%= @name %>::Configurations::Dependencies.deps
0
+ dependencies []
0
 
0
       application do
0
         use ::Rack::ShowExceptions
...
21
22
23
24
25
26
 
27
28
29
...
21
22
23
 
 
 
24
25
26
27
0
@@ -21,9 +21,7 @@ module <%= @name %>
0
       # handler ::Rack::Handler::WEBrick, :BindAddress => host, :Port => port
0
       # handler ::Rack::Handler::Thin, :Host => host, :Port => port
0
 
0
- # 'deps' lets you easily check the environment for expected dependencies.
0
- # See configurations/dependecies.rb for more info.
0
- deps <%= @name %>::Configurations::Dependencies.deps
0
+ dependencies []
0
 
0
       application do
0
         use ::Rack::Static, :urls => [ '/css/', '/javascript/', '/favicon.ico' ], :root => 'public'
...
142
143
144
145
 
146
147
148
...
182
183
184
185
 
186
187
188
...
142
143
144
 
145
146
147
148
...
182
183
184
 
185
186
187
188
0
@@ -142,7 +142,7 @@ module Waves
0
     # reloadable []
0
     class Default < Base
0
 
0
- %w( host port ports log reloadable database session debug root synchronize? deps ).
0
+ %w( host port ports log reloadable database session debug root synchronize? dependencies ).
0
       each { |name| attribute(name) }
0
 
0
       # Set the Rack handler, along with any specific options
0
@@ -182,7 +182,7 @@ module Waves
0
       session :duration => 30.minutes, :path => '/tmp/sessions'
0
       log :level => :info, :output => $stderr
0
       reloadable []
0
- deps []
0
+ dependencies []
0
     end
0
   end
0
 end

Comments

    No one has commented yet.