currency 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -17,12 +17,12 @@ lib/currency/money.rb
17
17
  lib/currency.rb
18
18
  Manifest.txt
19
19
  Rakefile
20
- README
21
- Releases
20
+ README.txt
21
+ Releases.txt
22
22
  test/ar_test_base.rb
23
23
  test/ar_simple_test.rb
24
24
  test/ar_column_test.rb
25
25
  test/money_test.rb
26
26
  test/test_base.rb
27
27
  test/xe_test.rb
28
- TODO
28
+ TODO.txt
@@ -6,16 +6,18 @@ This is the rubyforge.com Currency package.
6
6
 
7
7
  gem install currency
8
8
 
9
- == For User Documentation, see
9
+ == Documentation
10
10
 
11
- http://rubyforge.org/projects/currency/
11
+ "Project Info":http://rubyforge.org/projects/currency/
12
+
13
+ "API Documentation":http://currency.rubyforge.org/
12
14
 
13
15
  The RubyForge package currency
14
16
  implements an object-oriented representation of currencies, monetary values, foreign exchanges and rates.
15
17
 
16
18
  Currency::Money uses a scaled integer representation of the monetary value and performs accurate conversions from string values.
17
19
 
18
- See: http://umleta.com/node/5 for more details.
20
+ See also: http://umleta.com/node/5
19
21
 
20
22
  == Home page
21
23
 
@@ -31,7 +33,7 @@ See: http://umleta.com/node/5 for more details.
31
33
 
32
34
  Currency was developed by:
33
35
 
34
- * Kurt Stephens -- ruby-currency(at)umleta.com
36
+ * Kurt Stephens -- ruby-currency(at)umleta.com, sponsored by umleta.com
35
37
 
36
38
  == Contributors
37
39
 
data/Rakefile CHANGED
@@ -8,13 +8,17 @@ require 'rubygems'
8
8
  require 'hoe'
9
9
 
10
10
  PKG_Name = 'Currency'
11
- PKG_DESCRIPTION = %{Currency models currencies, monetary values, foreign exchanges.}
11
+ PKG_DESCRIPTION = %{Currency models currencies, monetary values, foreign exchanges and rates.
12
+ Supports ActiveRecord.
13
+
14
+ See http://currency.rubyforge.org/files/lib/currency_rb.html for more details.
15
+ }
12
16
 
13
17
  #################################################################
14
18
  # Release notes
15
19
  #
16
20
 
17
- def get_release_notes(relfile = "Releases")
21
+ def get_release_notes(relfile = "Releases.txt")
18
22
 
19
23
  release = nil
20
24
  notes = [ ]
@@ -1,10 +1,14 @@
1
1
  = Currency Release History
2
2
 
3
+ == Release 0.3.3: 2006/10/31
4
+
5
+ * Inclusion of README.txt and Releases.txt into documentation.
6
+
3
7
  == Release 0.3.2: 2006/10/31
4
8
 
5
9
  * BOO!
6
- * Fixed Currency.symbol formatting when Currency.symbol.nil?
7
10
  * Added expiration of rates in Xe.
11
+ * Fixed Currency.symbol formatting when Currency.symbol.nil?
8
12
  * Added more Money tests.
9
13
 
10
14
  == Release 0.3.1: 2006/10/31
data/{TODO → TODO.txt} RENAMED
File without changes
@@ -2,5 +2,5 @@
2
2
  # This file is auto-generated by build scripts.
3
3
  # See: rake update_version
4
4
  module Currency
5
- CurrencyVersion = '0.3.2'
5
+ CurrencyVersion = '0.3.3'
6
6
  end
metadata CHANGED
@@ -3,16 +3,16 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: currency
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.2
6
+ version: 0.3.3
7
7
  date: 2006-10-31 00:00:00 -05:00
8
- summary: Currency models currencies, monetary values, foreign exchanges.
8
+ summary: Currency models currencies, monetary values, foreign exchanges and rates. Supports ActiveRecord. See http://currency.rubyforge.org/files/lib/currency_rb.html for more details.
9
9
  require_paths:
10
10
  - lib
11
11
  - test
12
12
  email: ruby-currency@umleta.com
13
13
  homepage: http://rubyforge.org/projects/currency
14
14
  rubyforge_project: currency
15
- description: Currency models currencies, monetary values, foreign exchanges.
15
+ description: Currency models currencies, monetary values, foreign exchanges and rates. Supports ActiveRecord. See http://currency.rubyforge.org/files/lib/currency_rb.html for more details.
16
16
  autorequire:
17
17
  default_executable:
18
18
  bindir: bin
@@ -49,15 +49,15 @@ files:
49
49
  - lib/currency.rb
50
50
  - Manifest.txt
51
51
  - Rakefile
52
- - README
53
- - Releases
52
+ - README.txt
53
+ - Releases.txt
54
54
  - test/ar_test_base.rb
55
55
  - test/ar_simple_test.rb
56
56
  - test/ar_column_test.rb
57
57
  - test/money_test.rb
58
58
  - test/test_base.rb
59
59
  - test/xe_test.rb
60
- - TODO
60
+ - TODO.txt
61
61
  test_files: []
62
62
 
63
63
  rdoc_options: []