methopara 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +4 -2
- metadata +1 -1
data/Rakefile
CHANGED
@@ -18,7 +18,7 @@ RUBYFORGE_PROJECT = "asakusarb"
|
|
18
18
|
HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
|
19
19
|
BIN_FILES = %w( )
|
20
20
|
|
21
|
-
VERS = "0.3.
|
21
|
+
VERS = "0.3.2"
|
22
22
|
REV = File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil
|
23
23
|
CLEAN.include ['**/.*.sw?', '*.gem', '.config']
|
24
24
|
RDOC_OPTS = [
|
@@ -139,5 +139,7 @@ end
|
|
139
139
|
|
140
140
|
desc 'Update gem spec'
|
141
141
|
task :gemspec do
|
142
|
-
open("#{NAME}.gemspec", 'w')
|
142
|
+
open("#{NAME}.gemspec", 'w') do |file|
|
143
|
+
file.write spec.to_ruby
|
144
|
+
end
|
143
145
|
end
|