currency 0.4.1 → 0.4.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/README.txt +2 -1
- data/Rakefile +6 -2
- data/Releases.txt +5 -0
- data/lib/currency/currency_version.rb +1 -1
- metadata +1 -1
data/README.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
# For release
|
|
5
5
|
"
|
|
6
|
-
svn status
|
|
7
6
|
rake make_manifest
|
|
8
7
|
rake update_version
|
|
8
|
+
svn status
|
|
9
9
|
rake package
|
|
10
10
|
rake release VERSION=x.x.x
|
|
11
11
|
rake svn_release
|
|
@@ -155,7 +155,11 @@ end
|
|
|
155
155
|
|
|
156
156
|
task :make_manifest do
|
|
157
157
|
open("Manifest.txt", "w") do |f|
|
|
158
|
-
f.puts Dir['**/*'].reject { |fn|
|
|
158
|
+
f.puts Dir['**/*'].reject { |fn|
|
|
159
|
+
fn == 'email.txt' ||
|
|
160
|
+
! test(?f, fn) ||
|
|
161
|
+
fn =~ /CVS|.svn|([#~]$)|(.gem$)|(^pkg\/)|(^doc\/)/
|
|
162
|
+
}.sort.join("\n") + "\n"
|
|
159
163
|
end
|
|
160
164
|
end
|
|
161
165
|
|
data/Releases.txt
CHANGED
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: currency
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.4.
|
|
6
|
+
version: 0.4.2
|
|
7
7
|
date: 2007-03-11 00:00:00 -06:00
|
|
8
8
|
summary: "Currency models currencies, monetary values, foreign exchanges rates. Pulls live and historical rates from http://xe.com/, http://newyorkfed.org/, http://thefinancials.com/. Can store/retrieve historical rate data from database using ActiveRecord. Can store/retrieve Money values using ActiveRecord. For more details, see: http://currency.rubyforge.org/ http://currency.rubyforge.org/files/README.txt"
|
|
9
9
|
require_paths:
|