https://github.com/RubyMoney/money

sort by:
Revision Author Date Message Commit Date
9be80a6 Update version to 6.8.3 06 April 2017, 20:40:04 UTC
70fae74 LKR currency html_entity symbol fix with the correct value (#694) 06 April 2017, 20:38:04 UTC
e1608f4 Add support for the British Penny (GBX) (#692) GBX is in wide use in the world of stock exchanges. https://en.wikipedia.org/wiki/Penny_sterling 06 April 2017, 20:37:50 UTC
0a56365 Update version to 6.8.2 10 March 2017, 10:35:31 UTC
1d3a06e Update links to HTTPS (#689) 09 March 2017, 09:00:16 UTC
700c4ad [Issue #678] VND currency should have symbol_first: false (#686) - Related to https://github.com/RubyMoney/money/issues/678 - Set VND currency to display dong symbol at the end 01 March 2017, 10:51:03 UTC
6e00067 Relax i18n version constraint to allow patch version updates (#685) 25 February 2017, 17:47:17 UTC
190683e Peruvian Sol (#684) At its introduction in 1991, the currency was officially called nuevo sol ("new sol"), but on November 13, 2015, the Peruvian Congress voted to rename the currency simply sol https://en.wikipedia.org/wiki/Peruvian_sol 13 February 2017, 17:45:19 UTC
26465ab Merge pull request #683 from antstorm/fix-uzs Fix symbol for UZS 09 February 2017, 14:24:03 UTC
536059a Add disambiguate_symbol for XFU 08 February 2017, 20:28:22 UTC
a8de622 Set symbol for UZS 08 February 2017, 20:28:22 UTC
c7fd576 Bump i18n version to 0.8.0 (#681) 04 February 2017, 10:15:47 UTC
557561e Merge pull request #680 from karthikmuralidharan/patch-2 fix self_amount constructor accepting nil currency_code 01 February 2017, 16:58:29 UTC
fd91901 fix self_amount constructor accepting nil currency_code This scenario happened to me: ``` currency_code = nil (returned by data store) amount = 500 Money.from_amount(amount, currency_code).cents results in ``` Basically currency_code did not default to the default_currency value and was accepted as nil. 01 February 2017, 13:16:53 UTC
7552ed6 eliminate subunits for forints (#679) 25 January 2017, 18:55:23 UTC
c7999bd Update version to 6.8.1 08 January 2017, 11:14:39 UTC
290fb35 Merge pull request #676 from antstorm/fix-frozen-money-issue Rollback #666 + different caching solution 08 January 2017, 11:11:17 UTC
3450314 Rollback #666 + different caching solution 07 January 2017, 19:20:47 UTC
ac88208 Update version to 6.8.0 03 January 2017, 18:10:27 UTC
ffbfab7 Merge pull request #673 from RubyMoney/ruby-2-4-0 Ruby 2.4.0 support 03 January 2017, 18:01:41 UTC
ad7794c Fixnum is deprecated in ruby 2.4. (#674) BigDecimal#new raises an error when the argument is an empty string. Solved by checking for it and changing to a 0. 03 January 2017, 10:52:51 UTC
ada9b9b Fix ruby 2.4.0 deprecation warnings (#672) 29 December 2016, 11:21:44 UTC
8381088 Add ruby 2.4.0 to build targets 29 December 2016, 11:21:44 UTC
ddf506a Merge pull request #666 from antstorm/precache-i18n-calls Cache I18n calls for better performance 19 December 2016, 10:40:31 UTC
05fec49 Remove premature caching of the Money.empty method 19 December 2016, 10:31:33 UTC
f7a4d5a Merge pull request #670 from pda/remove-post-install-message money.gemspec: remove post_install_message 13 December 2016, 08:47:19 UTC
fb64023 money.gemspec: remove post_install_message 13 December 2016, 04:50:49 UTC
7ba1c8e Merge pull request #668 from prokopsimek/patch-1 Change czk thousand separator to most used 25 November 2016, 22:17:46 UTC
bcd133b Change czk thousand separator to most used Changed thousands separator to another which is more used in Czech Republic. 25 November 2016, 12:36:46 UTC
d192cad Cache I18n calls for better performance 22 November 2016, 19:25:59 UTC
b07a9d9 Merge pull request #664 from guilleiguaran/patch-1 Update example for recent versions of ActiveRecord 07 November 2016, 11:07:21 UTC
355dc94 Update example for recent versions of ActiveRecord `find_by_*` was replaced with `find_by(conditions_hash)` and `find_or_initialize_by_*` was replaced with `find_or_initialize_by(conditions_hash)` 06 November 2016, 21:09:17 UTC
5a9b970 Merge pull request #663 from project-eutopia/disambiguate_and_symbol_options_work_together Do not ignore disambiguate option when symbol: true in `format` method 28 October 2016, 21:49:07 UTC
f401e30 Don't ignore disambiguate option when symbol: true Currently, calling `format` with both disambiguate and symbol options set to true will just return the ambiguous symbol: ``` Money.new(1999_98, "USD").format(disambiguate: true, symbol: true) => "$1,999.98" ``` This PR changes the behavior so disambiguate is not ignored if symbol is true: ``` Money.new(1999_98, "USD").format(disambiguate: true, symbol: true) => "US$1,999.98" ``` 28 October 2016, 20:31:42 UTC
aa35ebd Merge pull request #661 from spk/allow-fail-rbx Allow failures from rubinius 23 October 2016, 15:20:56 UTC
76100ea Allow failures from rubinius RVM fail to install on travis https://github.com/rvm/rvm/issues/3617 23 October 2016, 11:03:25 UTC
9b2421d Merge pull request #659 from xssc/patch-1 Change symbol_first to false for RON 09 October 2016, 20:01:18 UTC
792d0c1 Merge pull request #660 from antstorm/fix-ruby-1-9-3 Lock term-ansicolor version for ruby 1.9.x 09 October 2016, 19:47:01 UTC
c85432e Lock term-ansicolor version for ruby 1.9.x 09 October 2016, 19:39:20 UTC
dcbe43b Change symbol_first to false for RON 09 October 2016, 17:23:24 UTC
e2773f7 Merge pull request #656 from antstorm/fix-exchange-issues-with-bigger-numbers Fix exchange issues when dealing with larger numbers 01 September 2016, 22:57:34 UTC
1df2f31 Fix exchange issues when dealing with larger numbers 01 September 2016, 22:35:36 UTC
47ca120 Merge pull request #653 from antstorm/fix-for-negative-amount-allocation Correct allocation for negative amounts 29 August 2016, 20:29:23 UTC
37e76ea Correct allocation for negative amounts 29 August 2016, 19:51:12 UTC
0887443 Merge pull request #651 from antstorm/add_test_for_currency_as_string Check cents remain unchanged when calling currency_as_string= 20 August 2016, 15:41:28 UTC
6b28893 Check that cents remain unchanged after changing the currency with currency_as_string= 20 August 2016, 15:06:34 UTC
5630a70 Merge pull request #648 from MiguelBel/update-to-iso-4217 Update currency decimals to ISO-4217 15 August 2016, 16:17:52 UTC
9c898c9 Merge pull request #649 from antstorm/fix-ruby-193 Lock tins gems for ruby 1.9.3 15 August 2016, 16:10:32 UTC
c3ab1bc Lock tins gems for ruby 1.9.3 15 August 2016, 16:05:25 UTC
3101baf Update currency decimals to ISO-4217 15 August 2016, 13:19:31 UTC
c67bf62 Merge pull request #647 from RubyMoney/to_refactoring_case_statement Replace switch statement with Hash structure 15 July 2016, 12:22:46 UTC
703e93f Replace switch statement with Hash structure 15 July 2016, 11:59:16 UTC
1d17a81 Merge pull request #646 from antstorm/update-rubies Update Travis CI ruby versions 12 July 2016, 00:10:28 UTC
f515050 Merge pull request #644 from jdatti/master html_entity for COP should be $ 11 July 2016, 16:49:19 UTC
c2f914d Update Travis CI ruby versions 11 July 2016, 16:45:49 UTC
a529382 Merge pull request #645 from antstorm/fix-ruby-1-9-json-issue Lock json at 1.8.3 for ruby 1.9 11 July 2016, 16:42:16 UTC
844bbbb Lock json at 1.8.3 for ruby 1.9 11 July 2016, 16:32:29 UTC
1d720c8 html_entity for COP should be $ 08 July 2016, 11:25:25 UTC
aa20a62 Merge pull request #643 from we138/add-currencies add currency from the FFaker::Currency list 01 July 2016, 14:13:03 UTC
810d1e7 add currency from the FFaker::Currency list Update formatting.rb 01 July 2016, 13:51:07 UTC
e86aa7e Merge pull request #641 from naps62/mp-uphold Adding reference to money-uphold-bank 16 June 2016, 14:54:44 UTC
4e96ceb Adding reference to money-uphold-bank 16 June 2016, 13:53:50 UTC
35b71b9 Merge pull request #640 from RubyMoney/mention-mit-in-license Mention "MIT" in license text 13 June 2016, 21:11:49 UTC
42fc721 Mention "MIT" in license text Closes #639 13 June 2016, 20:47:37 UTC
90dfbda Merge pull request #635 from yenshirak/fix-huf fixed HUF smallest denomination 30 May 2016, 16:16:51 UTC
18b17f9 fixed HUF smallest denomination 30 May 2016, 14:24:53 UTC
bc1781d Merge pull request #624 from printercu/conversion_errors When conversions disallowed, raise errors on every x-currecy arithmetic operation 18 May 2016, 09:18:42 UTC
64bcb03 Merge pull request #632 from ajahongir/fix/uzs-syntax UZS syntax fixed 18 May 2016, 09:14:50 UTC
b258963 UZS syntax fixed 18 May 2016, 05:14:11 UTC
8b97ebc Update version to 6.7.1 08 May 2016, 20:36:40 UTC
486c4c9 Update Changelog for 6.7.1 08 May 2016, 20:33:40 UTC
cac0275 Merge pull request #630 from naps62/mp-readme Replaces deprecated gem with new version 02 May 2016, 10:12:50 UTC
02e1560 Replaces deprecated gem with new version money-json-rates has been deprecated since June 30th 2015, and their own readme refers to currencylayer as the new version 02 May 2016, 09:10:41 UTC
d20bfea Merge pull request #627 from netmask/master Added disambiguation symbol to USD Dollar 29 April 2016, 14:35:36 UTC
eb19812 Added disambiguation symbol to USD Dollar - Added US% to json - Fix test case 22 April 2016, 20:06:56 UTC
fa50964 When conversions disallowed, raise errors on every x-currecy arithmetic operation 22 April 2016, 16:06:28 UTC
d090daa Merge pull request #625 from printercu/divmod Fixed divmod. Fixes #620 22 April 2016, 15:06:29 UTC
1b004ed Fixed divmod. Fixes #620 06 April 2016, 18:10:18 UTC
e571650 Merge pull request #616 from printercu/master Money#== raises error for non-zero numeric values 24 March 2016, 19:40:32 UTC
6c9b727 Money#== raises error for non-zero numeric values 24 March 2016, 12:46:20 UTC
fea316e Merge pull request #615 from r11runner/readme-typo corrected a typo in README 21 March 2016, 17:24:09 UTC
2889098 corrected a typo in README 21 March 2016, 16:52:09 UTC
39b617c Merge pull request #612 from RubyMoney/fix-format-bug fix formatting for edge case with i18n/yaml settings 26 February 2016, 00:40:54 UTC
3af4d4c fix formatting for edge case with i18n 26 February 2016, 00:32:40 UTC
741d11e Merge pull request #611 from tonyta/infinite-typo Typo Fixes and Consistency Changes 21 February 2016, 23:03:36 UTC
1e08b9d consistent case and plurality when mentioning currency 21 February 2016, 18:47:06 UTC
af7abe0 fix typos 21 February 2016, 16:18:32 UTC
eb968be Merge pull request #610 from RubyMoney/fix-format-docs fix Money::Formatting#format docs 18 February 2016, 00:01:41 UTC
c6eb9be changelog entry 17 February 2016, 23:08:58 UTC
9c9f13e link to `infinite_precision` from docs 17 February 2016, 23:08:14 UTC
88bf79c fix Money::Formatting#format docs 17 February 2016, 23:08:14 UTC
16122fe Merge pull request #609 from RubyMoney/fix-danish-krone-symbol fix symbol for Danish Krone (DKK) 17 February 2016, 22:38:05 UTC
631b7d4 fix symbol for Danish Krone (DKK) 17 February 2016, 22:32:10 UTC
e8281aa Merge pull request #607 from printercu/master Fix coercion issues 01 February 2016, 14:02:20 UTC
fbdfefc Comparison with numeric zero Fixes #608 31 January 2016, 07:41:05 UTC
cd02a56 Fix coercion issues Avoid duplication of arithmethic methods for Money and coerced Numeric, treat them as fully commutative operations. 24 January 2016, 13:56:53 UTC
a6cf218 Merge pull request #603 from antstorm/update-exponent-description Fix Currency#exponent description 20 January 2016, 13:15:44 UTC
04ffafe Fix typo 20 January 2016, 11:48:41 UTC
71e818a Fix Currency#exponent description 20 January 2016, 10:59:26 UTC
9d5b0a3 Updated readme about changed Currency#exponent 20 January 2016, 03:25:23 UTC
back to top