public
Fork of defunkt/sake
Description: System wide Rake.
Homepage: http://errtheblog.com/posts/60-sake-bomb
Clone URL: git://github.com/wycats/sake.git
sake: fix gemspace, kill eager nil
defunkt (author)
Wed Feb 06 22:59:56 -0800 2008
commit  33837e27278625d0532a236ccaae32f5aac83278
tree    c0c1c31c4bcf6ec78e08a106773cf43287e15cd9
parent  cf7420b0b953edc13d01f4380c3e80291c9d3d6c
...
1
2
3
4
5
6
7
8
9
 
 
 
 
 
 
 
 
 
...
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
0
@@ -1,9 +1,9 @@
0
-./bin/sake
0
-./lib/help.rb
0
-./lib/pastie.rb
0
-./lib/sake.rb
0
-./lib/server.rb
0
-./Manifest
0
-./Rakefile
0
-./README
0
-./LICENSE
0
+bin/sake
0
+lib/help.rb
0
+lib/pastie.rb
0
+lib/sake.rb
0
+lib/server.rb
0
+Manifest
0
+Rakefile
0
+README
0
+LICENSE
...
8
9
10
11
12
13
14
15
16
17
 
 
 
 
 
 
18
19
20
...
8
9
10
 
 
 
 
 
 
 
11
12
13
14
15
16
17
18
19
0
@@ -8,13 +8,12 @@ begin
0
 
0
   Echoe.new('sake', Sake::Version::String) do |p|
0
     p.rubyforge_name = 'err'
0
- p.summary = "Sake tastes great and helps maintain system-level Rake files."
0
- p.description = "Sake tastes great and helps maintain system-level Rake files."
0
- p.url = "http://errtheblog.com/"
0
- p.author = 'Chris Wanstrath'
0
- p.email = "chris@ozmm.org"
0
- p.extra_deps << ['ParseTree', '=2.0.1']
0
- p.extra_deps << ['ruby2ruby', '=1.1.7']
0
+ p.summary = "Sake tastes great and helps maintain system-level Rake files."
0
+ p.description = "Sake tastes great and helps maintain system-level Rake files."
0
+ p.url = "http://errtheblog.com/"
0
+ p.author = 'Chris Wanstrath'
0
+ p.email = "chris@ozmm.org"
0
+ p.dependencies = ['ParseTree =2.0.1', 'ruby2ruby =1.1.7']
0
   end
0
 
0
 rescue LoadError => boom
...
77
78
79
80
 
81
82
83
...
561
562
563
 
 
 
 
 
564
565
566
...
77
78
79
 
80
81
82
83
...
561
562
563
564
565
566
567
568
569
570
571
0
@@ -77,7 +77,7 @@ class Sake
0
   module Version #:nodoc:
0
     Major = '1'
0
     Minor = '0'
0
- Tweak = '12'
0
+ Tweak = '13'
0
     String = [ Major, Minor, Tweak ].join('.')
0
   end
0
 
0
@@ -561,6 +561,11 @@ class Nil # :nodoc:
0
   def is_file?
0
     false
0
   end
0
+
0
+ # under the evil
0
+ def method_missing(*args, &block)
0
+ super
0
+ end
0
 end
0
 
0
 def die(*message) # :nodoc:

Comments

    No one has commented yet.