public
Rubygem
Description: a ruby library for generating identicon
Clone URL: git://github.com/swdyh/quilt.git
 * added updat_gemspec task
swdyh (author)
Fri Sep 19 05:28:47 -0700 2008
commit  504c3aee7df8f135bb0fad83f3c18eaf498b9966
tree    e415a53d71f7f7a18736839168b5cb292f967b21
parent  ce5cb6d7cc9a804df7bfbc56e68cc88ee1d0ea08
...
18
19
20
21
 
22
23
24
...
132
133
134
135
 
136
137
138
 
 
 
 
...
18
19
20
 
21
22
23
24
...
132
133
134
 
135
136
137
138
139
140
141
142
0
@@ -18,7 +18,7 @@ DESCRIPTION = "a library for generating identicon."
0
 RUBYFORGE_PROJECT = "quilt"
0
 HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
0
 BIN_FILES = %w( )
0
-VERS = "0.0.2"
0
+VERS = "0.0.3"
0
 
0
 REV = File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil
0
 CLEAN.include ['**/.*.sw?', '*.gem', '.config']
0
@@ -132,7 +132,11 @@ task :release => [:clean, :package] do |t|
0
 end
0
 
0
 desc 'Show information about the gem.'
0
-task :debug_gem do
0
+task :debug_gemspec do
0
   puts spec.to_ruby
0
 end
0
 
0
+desc 'Update information about the gem.'
0
+task :update_gemspec do
0
+ open("#{NAME}.gemspec", 'w') { |f| f.puts spec.to_ruby }
0
+end

Comments

    No one has commented yet.