public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
cleaning up unneeded defaults
automatthew (author)
Thu May 15 15:22:29 -0700 2008
commit  e59585c4ebb2acb6feced76d2b10301ff4ab3fa7
tree    0f0f7d7b3676c27dd6d30dc1766ead6cd077c2ae
parent  81f2bf518e27d432b2c4554ec7b4124a11b38328
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Blog
0
 
0
   module Configurations
0
 
0
- class Development < Base
0
+ class Development < Default
0
 
0
       database :adapter => 'sqlite', :database => 'blog.db'
0
 
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Blog
0
 
0
   module Models
0
 
0
- class Comment < Base
0
+ class Comment < Default
0
       many_to_one :entry, :from => Blog::Models::Entry
0
     end
0
 
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Blog
0
 
0
   module Models
0
 
0
- class Entry < Base
0
+ class Entry < Default
0
       one_to_many :comments, :from => Blog::Models::Comment, :key => :entry_id
0
     end
0
 

Comments

    No one has commented yet.