-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule ruby-money
updated
23 files
+2 −1 | .rspec | |
+6 −3 | .travis.yml | |
+4 −0 | AUTHORS | |
+13 −0 | CHANGELOG.md | |
+11 −11 | README.md | |
+3 −3 | config/currency_iso.json | |
+18 −2 | config/currency_non_iso.json | |
+4 −4 | lib/money/bank/variable_exchange.rb | |
+11 −28 | lib/money/currency.rb | |
+43 −28 | lib/money/money.rb | |
+11 −9 | lib/money/money/arithmetic.rb | |
+1 −0 | lib/money/money/constructors.rb | |
+111 −152 | lib/money/money/formatter.rb | |
+71 −0 | lib/money/money/formatting_rules.rb | |
+1 −1 | lib/money/version.rb | |
+2 −2 | money.gemspec | |
+26 −0 | spec/currency_spec.rb | |
+28 −1 | spec/money/arithmetic_spec.rb | |
+8 −0 | spec/money/constructors_spec.rb | |
+34 −29 | spec/money/formatting_spec.rb | |
+40 −7 | spec/money_spec.rb | |
+2 −0 | spec/spec_helper.rb | |
+14 −0 | spec/support/shared_examples/money_examples.rb |