Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RubyMoney/monetize
A library for converting various objects into `Money` objects.
https://github.com/RubyMoney/monetize
Last synced: about 2 months ago
JSON representation
A library for converting various objects into `Money` objects.
- Host: GitHub
- URL: https://github.com/RubyMoney/monetize
- Owner: RubyMoney
- License: mit
- Created: 2013-12-24T21:34:38.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T12:42:01.000Z (9 months ago)
- Last Synced: 2024-05-17T09:02:48.452Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 224 KB
- Stars: 415
- Watchers: 17
- Forks: 106
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ruby - Monetize - A library for converting various objects into Money objects. (Money)
README
# Monetize
[![Gem Version](https://badge.fury.io/rb/monetize.svg)](http://badge.fury.io/rb/monetize)
[![Ruby](https://github.com/RubyMoney/monetize/actions/workflows/ruby.yml/badge.svg)](https://github.com/RubyMoney/monetize/actions/workflows/ruby.yml)
[![Maintainability](https://api.codeclimate.com/v1/badges/a2cf7b7a170b4ca68fe8/maintainability)](https://codeclimate.com/github/RubyMoney/monetize/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/a2cf7b7a170b4ca68fe8/test_coverage)](https://codeclimate.com/github/RubyMoney/monetize/test_coverage)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](http://opensource.org/licenses/MIT)A library for converting various objects into `Money` objects.
## Installation
Run:
bundle add monetize
Or install it yourself as:
$ gem install monetize
## Usage
```ruby
Monetize.parse("USD 100") == Money.new(100_00, "USD")
Monetize.parse("EUR 100") == Money.new(100_00, "EUR")
Monetize.parse("GBP 100") == Money.new(100_00, "GBP")"100".to_money == Money.new(100_00, "USD")
```Optionally, enable the ability to assume the currency from a passed symbol. Otherwise, currency symbols will be ignored, and USD used as the default currency:
```ruby
Monetize.parse("£100") == Money.new(100_00, "USD")Monetize.assume_from_symbol = true
Monetize.parse("£100") == Money.new(100_00, "GBP")
"€100".to_money == Money.new(100_00, "EUR")
```Parsing can be improved where the input is not expected to contain fractional subunits.
To do this, set `Monetize.expect_whole_subunits = true````ruby
Monetize.parse('EUR 10,000') == Money.new(100_00, "EUR")Monetize.expect_whole_subunits = true
Monetize.parse('EUR 10,000') == Money.new(10_000_00, "EUR")
```Why does this work? If we expect fractional subunits then the parser will treat a single
delimiter as a decimal marker if it matches the currency's decimal marker. But often
this is not the case - a European site will show $10.000 because that's the local format.
As a human, if this was a stock ticker we might expect fractional cents. If it's a retail price we know it's actually an incorrect thousands separator.Monetize can also parse a list of values, returning an array-like object ([Monetize::Collection](lib/collection.rb)):
```ruby
Monetize.parse_collection("€80/$100") == [Money.new(80_00, "EUR"), Money.new(100_00, "USD")]
Monetize.parse_collection("€80, $100") == [Money.new(80_00, "EUR"), Money.new(100_00, "USD")]# The #range? method detects the presence of a hyphen
Monetize.parse_collection("€80-$100").range? == true
```## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md) for details.