methopara 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|