public
Description: The gem verison of my lightweight tool to manage gems using a config file, similar to GemInstaller.
Homepage:
Clone URL: git://github.com/UnderpantsGnome/gem_tools-gem.git
fix yet another boneheaded type
Tue Sep 30 14:48:05 -0700 2008
commit  6c971b05c9c2047ba2676857d8dadede16bfd94c
tree    9d866658a4ec2b8a0f8df1d30144343fbba8cd9e
parent  95b144f4947d3c00d25a7c27e9c9cf3c78d2233d
...
 
 
 
1
2
3
...
1
2
3
4
5
6
0
@@ -1,3 +1,6 @@
0
+== 0.0.6 2008-09-30
0
+* no more coding when tired
0
+
0
 == 0.0.6 2008-09-26
0
 * Fix the setup routine
0
 * Add the missing gems.template.yml to the manifest
...
53
54
55
56
 
57
58
59
...
53
54
55
 
56
57
58
59
0
@@ -53,7 +53,7 @@ BANNER
0
     puts opts; exit
0
   end
0
 
0
-  OPTIONS = opts
0
+  OPTIONS = options
0
 end.parse!
0
 
0
 GemTools.run command
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module GemTools
0
   module VERSION #:nodoc:
0
     MAJOR = 0
0
     MINOR = 0
0
-    TINY  = 6
0
+    TINY  = 7
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end

Comments