Empact-money 2.3.6

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/spec/spec.opts ADDED
@@ -0,0 +1,4 @@
1
+ --colour
2
+ --format progress
3
+ --loadby mtime
4
+ --reverse
@@ -0,0 +1,20 @@
1
+ begin
2
+ require 'rubygems'
3
+ require 'spec'
4
+ require 'active_record'
5
+ rescue LoadError
6
+ require 'rubygems'
7
+ gem 'rspec'
8
+ require 'spec'
9
+ end
10
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
11
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
12
+ require 'money'
13
+
14
+ config = YAML.load_file(File.dirname(__FILE__) + '/db/database.yml')
15
+ ActiveRecord::Base.logger = Logger.new("/tmp/money-debug.log")
16
+ ActiveRecord::Base.establish_connection(config)
17
+
18
+ db_file = File.exists?(File.dirname(__FILE__) + '/../tmp/acts_as_money.sqlite3')
19
+ load(File.dirname(__FILE__) + "/db/schema.rb") unless db_file
20
+
data/tmp/.gitignore ADDED
File without changes
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: Empact-money
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.3.6
5
+ platform: ruby
6
+ authors:
7
+ - Money Team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-05-29 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: This library aids one in handling money and different currencies.
17
+ email: see@reame
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.rdoc
24
+ files:
25
+ - .gitignore
26
+ - History.txt
27
+ - MIT-LICENSE
28
+ - Manifest.txt
29
+ - README.rdoc
30
+ - Rakefile
31
+ - VERSION
32
+ - lib/money.rb
33
+ - lib/money/acts_as_money.rb
34
+ - lib/money/core_extensions.rb
35
+ - lib/money/errors.rb
36
+ - lib/money/exchange_bank.rb
37
+ - lib/money/money.rb
38
+ - money.gemspec
39
+ - rails/init.rb
40
+ - spec/db/database.yml
41
+ - spec/db/schema.rb
42
+ - spec/money/acts_as_money_spec.rb
43
+ - spec/money/core_extensions_spec.rb
44
+ - spec/money/exchange_bank_spec.rb
45
+ - spec/money/money_spec.rb
46
+ - spec/spec.opts
47
+ - spec/spec_helper.rb
48
+ - tmp/.gitignore
49
+ has_rdoc: false
50
+ homepage: http://github.com/nofxx/money
51
+ post_install_message:
52
+ rdoc_options:
53
+ - --charset=UTF-8
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: "0"
61
+ version:
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ version:
68
+ requirements: []
69
+
70
+ rubyforge_project:
71
+ rubygems_version: 1.2.0
72
+ signing_key:
73
+ specification_version: 3
74
+ summary: This library aids one in handling money and different currencies.
75
+ test_files:
76
+ - spec/money/exchange_bank_spec.rb
77
+ - spec/money/acts_as_money_spec.rb
78
+ - spec/money/money_spec.rb
79
+ - spec/money/core_extensions_spec.rb
80
+ - spec/db/schema.rb
81
+ - spec/spec_helper.rb