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
commit  b5972e1ba2ae7ac20346f4b030720f617bcf127e
tree    732f04a0e278cfcd99cadaeb0503db2fdf68cbdf
parent  b370a5ba3b0b5dbcdd0a63caf8ca0fc13c7cdac2
...
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
...
183
184
185
186
 
187
188
189
...
142
143
144
 
145
146
147
148
149
...
184
185
186
 
187
188
189
190
0
@@ -142,7 +142,8 @@ module Waves
0
     # reloadable []
0
     class Default < Base
0
 
0
- %w( host port ports log reloadable database session debug root synchronize? deps ).each { |name| attribute(name) }
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
       # that need to be passed to the handler's #run method.
0
@@ -183,7 +184,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.