currency 0.3.0 → 0.3.1
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 +3 -3
- data/Releases +4 -0
- data/lib/currency/active_record.rb +1 -1
- data/lib/currency/currency_version.rb +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
@@ -12,7 +12,7 @@ require 'hoe'
|
|
12
12
|
PKG_Name = 'Currency'
|
13
13
|
PKG_NAME = PKG_Name.gsub(/[a-z][A-Z]/) {|x| "#{x[0,1]}_#{x[1,1]}"}.downcase
|
14
14
|
|
15
|
-
hoe = Hoe.new("currency", '0.3.
|
15
|
+
hoe = Hoe.new("currency", '0.3.1') do |p|
|
16
16
|
p.author = 'Kurt Stephens'
|
17
17
|
p.description = %{Currency models currencies, monetary values, foreign exchanges.}
|
18
18
|
p.email = "ruby-#{PKG_NAME}@umleta.com"
|
@@ -34,7 +34,7 @@ end
|
|
34
34
|
|
35
35
|
version_rb = "lib/#{PKG_NAME}/#{PKG_NAME}_version.rb"
|
36
36
|
|
37
|
-
task :update_version
|
37
|
+
task :update_version do
|
38
38
|
announce "Updating #{PKG_Name} version to #{PKG_VERSION}: #{version_rb}"
|
39
39
|
open(version_rb, "w") do |f|
|
40
40
|
f.puts "# DO NOT EDIT"
|
@@ -47,7 +47,7 @@ task :update_version => 'Rakefile' do
|
|
47
47
|
if ENV['RELTEST']
|
48
48
|
announce "Release Task Testing, skipping commiting of new version"
|
49
49
|
else
|
50
|
-
sh %{svn commit -m "Updated to version #{PKG_VERSION}" #{version_rb}}
|
50
|
+
sh %{svn commit -m "Updated to version #{PKG_VERSION}" #{version_rb} Rakefile}
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
data/Releases
CHANGED
metadata
CHANGED