https://github.com/RubyMoney/money

sort by:
Revision Author Date Message Commit Date
86a17fe Regenerated gemspec for version 3.0.0 07 May 2010, 18:35:18 UTC
520b147 Version bump to 3.0.0 07 May 2010, 18:33:05 UTC
d962c5c update CHANGELOG for v3.0.0 07 May 2010, 18:33:04 UTC
e670157 fix typo in README.rdoc 07 May 2010, 14:11:00 UTC
20ab22e Money < 2.3 doesn't require ActiveRecord hack 07 May 2010, 14:08:35 UTC
e9429a0 More documentation about Money 2.3 and ActiveRecord (references #4) 07 May 2010, 14:08:34 UTC
969e42f Fixed typo 07 May 2010, 14:08:33 UTC
103ac91 Typo in word Recieve => Receive 07 May 2010, 14:08:32 UTC
efe8951 Whitespaces. 07 May 2010, 14:08:31 UTC
9c74244 README formatting 07 May 2010, 14:08:28 UTC
3d48d49 added eu_central_bank.gem to list of compatible currency exchange rate implementations. 21 April 2010, 12:27:33 UTC
519cb0a Improve Money#nonzero? to have the same return-value semantics as Numeric#nonzero? It returns self when non-zero, or nil otherwise. 19 April 2010, 11:49:13 UTC
4caaec0 Add Money#nonzero? to match Ruby's Numeric#nonzero? 19 April 2010, 11:49:00 UTC
92426ce Regenerated gemspec for version 2.3.0 16 April 2010, 12:37:34 UTC
bfbdf4d Version bump to 2.3.0 16 April 2010, 12:37:11 UTC
80cf517 Created CHANGELOG.rdoc 16 April 2010, 12:36:00 UTC
e7a33ec Fixed Ruby 1.9 encoding issue 16 April 2010, 12:26:29 UTC
35e72ae Added documentation for ATTRIBUTES 16 April 2010, 12:25:14 UTC
8c73c05 More documentation about Currency attributes and priority attribute 16 April 2010, 12:14:19 UTC
33b11e5 Introduce Currency before Currency exchange 16 April 2010, 12:14:17 UTC
e8d0b50 Restore BRL format (see 898d46265f3d0299507a4f74f39c762d51b00a96) 15 April 2010, 16:56:42 UTC
8a2e53b Fixed Ruby 1.9 encoding issue. 15 April 2010, 16:56:41 UTC
22f71a2 Money::Currency documentation 15 April 2010, 16:56:40 UTC
83040ae Currency => Money::Currency 15 April 2010, 16:56:40 UTC
b068c70 Deprecate old behaviors. 15 April 2010, 16:56:39 UTC
b3c4138 Make sure Money deals with Currency objects instead of String representations. 15 April 2010, 16:56:38 UTC
49514ec Add Currency class. The Currency object provides more flexibility compared with a currency stored as String. Currency::TABLE definition is borrowed from http://github.com/mysmallidea/money/commit/673320409580d08b64cb455dfeb5e85616c490bc 15 April 2010, 16:56:37 UTC
4a080b4 Let Money#format take advantage of the new Money#symbol, Money#delimiter and Money#separator methods 15 April 2010, 16:56:36 UTC
df19ceb Extract Money#symbol, Money#delimiter and Money#separator. 15 April 2010, 16:56:36 UTC
c1ede96 Added `rake clean` and `rake clobber` 18 February 2010, 12:51:55 UTC
61ee87a Configured `rubyforge:release:rdoc` to push docs to the root directory 18 February 2010, 12:44:23 UTC
d5c95ed Regenerated gemspec for version 2.2.0 17 February 2010, 12:48:30 UTC
4ffe24e Version bump to 2.2.0 17 February 2010, 12:48:01 UTC
ebdedb8 Added rubyforge tasks to Rakefile 16 February 2010, 19:59:30 UTC
09cacac Added gemcutter tasks to Rakefile 16 February 2010, 19:59:11 UTC
6c2b80f Updated instructions for installing development version 08 February 2010, 16:16:44 UTC
2a05f71 Added Jeweler to workflow 08 February 2010, 16:16:36 UTC
21d6ceb Add myself (Shane Emmons) to authors 04 February 2010, 15:26:30 UTC
faf31bf Removed symbols.rb and replaced with defaults.rb which allows for default SYMBOLS, SEPARATORS and DELIMITERS 04 February 2010, 15:24:54 UTC
898d462 Fixed BRL so it always has a space between symbol and amount 04 February 2010, 14:23:29 UTC
d53a146 Added Money#format(:separator) and Money#format(:delimiter) 04 February 2010, 13:50:06 UTC
460ec64 Added spec for Money#to_s 11 January 2010, 13:39:57 UTC
3e9e1e5 Added Money#to_f 11 January 2010, 13:39:42 UTC
884a485 Money#/ will now work with two Money objects. 11 January 2010, 13:39:35 UTC
40e10ae Money#== and Money#<=> will now work on any object that responds to #to_money, and will properly handle non-money objects instead of crashing. 08 November 2009, 10:09:11 UTC
44e3a34 Bump version to 2.1.5. 05 November 2009, 21:21:48 UTC
7cdcf5c Add symbol for Brazilian Real. 05 November 2009, 21:16:07 UTC
fd228db Money#format: correctly format symbol according to currency when :symbol option is not given. 05 November 2009, 21:11:51 UTC
b723ad9 Fix a documentation bug: Money.new isn't supposed to accept a hash as currency argument. 05 November 2009, 21:09:49 UTC
fa0733f Add symbols.rb to gem specification and bump version to 2.1.4. 02 August 2009, 11:50:44 UTC
55e0f67 Fix unit tests: make sure we load the correct money library. 02 August 2009, 11:48:23 UTC
2b97cb4 Improve test coverage and documentation and fix some Ruby 1.9 issues. 02 August 2009, 11:44:54 UTC
9989965 Added note in SYMBOLS hash that everything else defaults to $ 01 August 2009, 23:31:43 UTC
41eb67a Added note with location to get more symbols 01 August 2009, 23:31:43 UTC
7002b43 Implemented all my symbols from my tests 01 August 2009, 23:31:43 UTC
2d05d15 Infrastructure in place for fetching currency symbols 01 August 2009, 23:31:43 UTC
613569e Added tests for the currency symbol support 01 August 2009, 23:31:43 UTC
103f8b2 Avoid bad cents calculation on String#to_money by not using float in calculations. 01 June 2009, 09:01:47 UTC
b60712e Explicitly specify that String#to_money ignores unrecognized data. 27 May 2009, 18:01:03 UTC
913ad5f Handle when trying to split on delimiter and major or minor isn't present. Re: issue-1 27 May 2009, 18:01:03 UTC
87af801 Money#format does not display the symbol if :symbol is '', nil or false. 21 February 2009, 11:41:02 UTC
f6a90c1 Bump version number. 21 February 2009, 10:29:04 UTC
d545262 Commented private calculate_cents method so it's easily understood how it's calculating the cents from a number string 21 February 2009, 02:21:00 UTC
9397e6f Fixed String#to_money to handle decimal amounts at fractions of a penny correctly 20 February 2009, 20:10:41 UTC
2a824f7 Clean up whitespace 20 February 2009, 15:43:33 UTC
056c811 Updated more specs and allowed currency strings to included separators 20 February 2009, 15:12:27 UTC
80a76ef Two more tests for reverse delimiters 20 February 2009, 13:45:23 UTC
b873347 Added new tests for delimited dollar amounts 20 February 2009, 13:40:35 UTC
e56dc0c Bump version number. 19 February 2009, 12:08:26 UTC
2778ef3 Coding style cleanups. 19 February 2009, 12:07:36 UTC
ca15d3d Added support for old formatting rules, while retaining new format. There are lots of legacy applications using this. You can now do: format(:with_currency) format(:with_currency,:no_cents) As well as the newer hash based format. 19 February 2009, 11:35:25 UTC
c26fe43 Bump version to 2.1.0. 15 February 2009, 12:21:31 UTC
3b396a9 Change indentation in unit tests to 2-spaces for consistency's sake. 15 February 2009, 12:17:36 UTC
2825c52 Format method will now add commas to output. 15 February 2009, 12:05:13 UTC
3198687 Remove some redundant whitespace. 15 February 2009, 11:59:05 UTC
cb37786 Allow setting custom 'free' string when formatting a Money object. 15 February 2009, 11:58:10 UTC
de5010f Fix some documentation errors. 15 February 2009, 11:54:06 UTC
c4fb124 Added :display_free option to Money#format display zero amounts as free. By default, a zero amount will be formatted like any other amount. 15 February 2009, 11:50:11 UTC
e2b61a7 Move the tests for Money#format to the correct section. 15 February 2009, 11:44:20 UTC
fc51ef5 Make unit tests work in Ruby 1.9. 15 February 2009, 10:57:04 UTC
94d54d3 Add unit tests for Money#format. 15 February 2009, 10:56:03 UTC
c848376 Added ability to replace symbol when formatting a Money object 16 January 2009, 04:19:15 UTC
12f19f5 Fixed problem with Money parsing when currency in front. The problem manifested itself in parsing 'CAD -100.37', where the cents regexp would match the space separately from the rest. 21 November 2008, 03:47:37 UTC
46762f8 Update gem specification. 31 October 2008, 18:20:04 UTC
a1ad4a7 Update documentation and URLs. 31 October 2008, 18:17:38 UTC
ccf2496 Improve documentation. Add a convenient method Money.add_rate. 31 October 2008, 15:48:55 UTC
518da0d Rename README to README.rdoc so that Github will format it. 31 October 2008, 15:34:16 UTC
3713204 Improve README 31 October 2008, 15:33:52 UTC
b412fb3 Add gem specification file. 31 October 2008, 15:16:24 UTC
833fd10 Update documentation. 31 October 2008, 15:07:08 UTC
ce75f6c Add more tests. Add copyright notice for Phusion. 31 October 2008, 15:03:12 UTC
68a6dc3 Refactor the library and write tests for core extensions. 31 October 2008, 14:54:33 UTC
ed8e671 Revamp the Money and VariableExchangeBank classes and make the tests pass. 31 October 2008, 14:38:42 UTC
cb8f9aa Add unit tests. 31 October 2008, 14:19:34 UTC
9ab11d2 Initial import of the Money library, version 1.7.0. 31 October 2008, 13:18:07 UTC
back to top