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
gem dep of sequel should be less than 2.0
automatthew (author)
Wed Jun 04 06:47:48 -0700 2008
commit  962aa9fc1ab0bc90b22123fd162dbf34aa3c85e8
tree    4b395978ca87cf606a464337d78f1179f9bd08b3
parent  75568d24a43992f0f17f6c960217ad68296e86d5
...
11
12
13
14
 
15
16
17
 
18
19
20
...
11
12
13
 
14
15
16
17
18
19
20
21
0
@@ -11,10 +11,11 @@ gem = Gem::Specification.new do |gem|
0
   gem.email = 'dan@zeraweb.com'
0
   gem.platform = Gem::Platform::RUBY
0
   gem.required_ruby_version = '>= 1.8.6'
0
- %w( mongrel rack markaby erubis RedCloth sequel
0
+ %w( mongrel rack markaby erubis RedCloth
0
    extensions live_console choice daemons ).each do |dep|
0
    gem.add_dependency dep
0
   end
0
+ gem.add_dependency('sequel', '< 2.0.0')
0
   gem.add_dependency('autocode', '= 0.9.2')
0
   gem.files = Dir['lib/**/*.rb','app/**/*']
0
   gem.has_rdoc = true

Comments

  • There’s no minimum version for sequel?

  • I’m sure there is, but I don’t know what version Dan was developing against at this stage. I also don’t know enough Sequel to quickly determine what versions are lacking methods referenced in Waves.

    The Base controller uses the “set” method which is replaced by “set_with_params” in Sequel 2.0.0, thus the addition of the dependency here.