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
Formatting for dep:check should be beautiful for > 80% of gems.
ab5tract (author)
Tue Sep 02 19:46:30 -0700 2008
commit  974bda8b96ecb3408da39ee60b2ddf62edcb28b9
tree    a39e11b41c1884bbe19e8cf5df56b416e47db09b
parent  736709e5e336e5aa1a96538d373962d00417bf95
...
32
33
34
35
 
36
37
38
39
 
 
40
41
 
42
43
 
44
45
46
...
32
33
34
 
35
36
37
38
 
39
40
41
 
42
43
 
44
45
46
47
0
@@ -32,15 +32,16 @@ namespace :dep do
0
     missing = Array.new
0
 
0
     puts "\nApplication-level dependencies:"
0
- puts " ('*' means gem is installed and available)"
0
+ puts " ('*' means gem is installed and available)"
0
     
0
     Waves.config.dependencies.each do |dep|
0
       pattern = /=#{dep}\s/
0
- print "\t#{dep}:\t\t["
0
+ print "\t#{dep}:\t\t"
0
+ print "\t" if dep.length < 7 # keep our formatting pretty, please.
0
       unless pattern.match(gems).nil?
0
- print "*]\n"
0
+ print "[*]\n"
0
       else
0
- print " ]\n"
0
+ print "[ ]\n"
0
       end
0
     end
0
   end

Comments

    No one has commented yet.