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
The beginning of Cache
ab5tract (author)
Thu Sep 04 13:22:18 -0700 2008
commit  1af33569507516604517a1337c2e78879dcb5c07
tree    440a674404866a51a5b69978c8c77c815246e37b
parent  21f0c3f3d09895d9037afc133ce84c21624ad3e6
...
57
58
59
60
 
 
61
 
62
63
64
...
57
58
59
 
60
61
62
63
64
65
66
0
@@ -57,8 +57,10 @@ namespace :dep do
0
       missing << dep if pattern.match(gems).nil?
0
     end
0
 
0
- missing.each do |dep|
0
+ missing.each do |m|
0
+ dep,ver = m.is_a?(String) ? [m,''] : m
0
       puts "Installing dependency: #{dep}"
0
+ puts ver
0
       begin
0
         require 'rubygems/dependency_installer'
0
         if Gem::RubyGemsVersion =~ /^1\.0\./
...
10
11
12
13
14
15
16
...
10
11
12
 
13
14
15
0
@@ -10,7 +10,6 @@ module Waves
0
         # - creates on the application module a database method that establishes and returns the ActiveRecord connection
0
         # - arranges for autoloading/autocreation of missing constants in the Models namespace
0
         # - defines ActiveRecord-specific helper methods on Waves::Controllers::Base
0
- # - adds 'active-record' to the application-level dependencies index, Waves.config.dependencies
0
         #
0
         # The controller helper methdods are:
0
         # - all
...
10
11
12
13
14
15
16
...
10
11
12
 
13
14
15
0
@@ -10,7 +10,6 @@ module Waves
0
         # - creates on the application module a database method that establishes the Sequel connection
0
         # - arranges for autoloading/autocreation of missing constants in the Models namespace
0
         # - defines Sequel-specific helper methods on Waves::Controllers::Base
0
- # - adds 'sequel' to the application-level dependencies index, Waves.config.dependencies
0
         #
0
         # The controller helper methdods are:
0
         # - all

Comments

    No one has commented yet.