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
sequel >= 2.0.0
automatthew (author)
Mon Jun 09 06:14:16 -0700 2008
commit  760a2b7fb8d802b23825a34f95ef2c1300e9ca16
tree    f249aefdf8a961df7b156e29e9a742070097fe28
parent  962aa9fc1ab0bc90b22123fd162dbf34aa3c85e8
...
5
6
7
8
 
9
10
11
12
13
14
 
15
16
17
18
 
19
20
21
...
5
6
7
 
8
9
10
11
12
13
 
14
15
16
17
 
18
19
20
21
0
@@ -5,17 +5,17 @@ require 'rake/gempackagetask'
0
 gem = Gem::Specification.new do |gem|
0
   gem.name = "waves"
0
   gem.summary  = "Open-source framework for building Ruby-based Web applications."
0
- gem.version = '0.7.2'
0
+ gem.version = '0.7.3'
0
   gem.homepage = 'http://dev.zeraweb.com/waves'
0
   gem.author = 'Dan Yoder'
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
0
+ %w( mongrel rack markaby erubis RedCloth sequel
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('sequel', '>= 2.0.0')
0
   gem.add_dependency('autocode', '= 0.9.2')
0
   gem.files = Dir['lib/**/*.rb','app/**/*']
0
   gem.has_rdoc = true
...
16
17
18
19
20
 
 
21
22
23
...
16
17
18
 
 
19
20
21
22
23
0
@@ -16,8 +16,8 @@ module <%= name %>
0
     
0
       def update( name )
0
        instance = find( name )
0
- instance.set( attributes )
0
- instance.save_changes
0
+ instance.update_with_params( attributes )
0
+ instance
0
       end
0
     
0
       def delete( name ); find( name ).destroy; end
...
2
3
4
5
 
6
7
8
9
10
11
 
 
12
13
 
 
 
 
14
15
16
...
2
3
4
 
5
6
7
8
9
 
 
10
11
12
 
13
14
15
16
17
18
19
0
@@ -2,15 +2,18 @@ Wave is an open source framework for building Ruby Web-applications.
0
 
0
 Waves is ... Full-featured and thread-safe. Compact and extensible. Configuration and convention. RESTful but also Magical (very important).
0
 
0
-Waves is powered by ... Rack and Mongrel (HTTP server), Sequel or Filebase (storage), Autocode (code reloading), LiveConsole (hot patching).
0
+Waves is powered by ... Rack and Mongrel (HTTP server), Sequel or Filebase (storage), AutoCode (code reloading), LiveConsole (hot patching).
0
 
0
 Main Web Site
0
 http://rubywaves.com/
0
 
0
-SVN / Issues / Wiki
0
-http://code.google.com/p/waves
0
+Source / Wiki
0
+http://github.com/dyoder/waves/tree/master
0
 
0
-Forums
0
+Issues
0
+http://waves.lighthouseapp.com
0
+
0
+Mailing List
0
 http://groups.google.com/group/rubywaves/
0
 
0
 RubyForge / Gem

Comments

    No one has commented yet.