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
repenting for the sin of not being ruby enough.
ab5tract (author)
Wed Aug 27 13:44:48 -0700 2008
automatthew (committer)
Wed Sep 03 07:58:43 -0700 2008
commit  37cb4058f7fa853393eabf1b456eaf31f931a1b3
tree    50e9d1fefc32e376aa0bc4e749a4a11a1f69836a
parent  493c92b3f866e868697a9b06d76e954a6de017c9
...
33
34
35
36
 
37
38
39
...
53
54
55
56
 
57
58
59
...
33
34
35
 
36
37
38
39
...
53
54
55
 
56
57
58
59
0
@@ -33,7 +33,7 @@ namespace :dep do
0
 
0
     Waves.config.dependencies.each do |dep|
0
       pattern = /=#{dep}\s/
0
- missing << dep unless (pattern.match(gems) != nil)
0
+ missing << dep if pattern.match(gems).nil?
0
     end
0
 
0
     unless missing.empty?
0
@@ -53,7 +53,7 @@ namespace :dep do
0
 
0
     Waves.config.dependencies.each do |dep|
0
       pattern = /=#{dep}\s/
0
- missing << dep unless (pattern.match(gems) != nil)
0
+ missing << dep if pattern.match(gems).nil?
0
     end
0
 
0
     missing.each do |dep|

Comments

    No one has commented yet.