currency_manager 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +85 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/currency_manager.gemspec +27 -0
- data/lib/currency_manager.rb +5 -0
- data/lib/currency_manager/money.rb +98 -0
- data/lib/currency_manager/version.rb +3 -0
- metadata +99 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b2de7628ec716c43e308de9e7ad85ee5d3837a1b
|
4
|
+
data.tar.gz: 53b766618abb939446d626afc88a3a7f229eb0e8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3be98d3334ce785648f13d0995206b30032a4752ad68641c27aebce022761fc5c6b0d337020b17c1a32b74eac61ad901e30053c690251097baba45659d261379
|
7
|
+
data.tar.gz: bdd501f82d44ebbc5dbf8a5c8e7ecb190b22d1d425d017a30773bb83fa7692e67c7c5a879209c9d09a40e4ced4a793d5951db2a1e15ba789e246283415cbddf6
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Arnas Rutkauskas
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
# CurrencyManager
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/currency_manager`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'currency_manager'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install currency_manager
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```
|
26
|
+
# Configure the currency rates with respect to a base currency (here EUR):
|
27
|
+
|
28
|
+
CurrencyManager::Money.conversion_rates('EUR', {
|
29
|
+
'USD' => 1.11,
|
30
|
+
'Bitcoin' => 0.0047
|
31
|
+
})
|
32
|
+
|
33
|
+
# Instantiate money objects:
|
34
|
+
|
35
|
+
fifty_eur = CurrencyManager::Money.new(50, 'EUR')
|
36
|
+
|
37
|
+
# Get amount and currency:
|
38
|
+
|
39
|
+
fifty_eur.amount # => 50
|
40
|
+
fifty_eur.currency # => "EUR"
|
41
|
+
fifty_eur.inspect # => "50.00 EUR"
|
42
|
+
|
43
|
+
# Convert to a different currency (should return a Money
|
44
|
+
# instance, not a String):
|
45
|
+
|
46
|
+
fifty_eur.convert_to('USD') # => 55.50 USD
|
47
|
+
|
48
|
+
# Perform operations in different currencies:
|
49
|
+
|
50
|
+
twenty_dollars = CurrencyManager::Money.new(20, 'USD')
|
51
|
+
|
52
|
+
# Arithmetics:
|
53
|
+
|
54
|
+
fifty_eur + twenty_dollars # => 68.02 EUR
|
55
|
+
fifty_eur - twenty_dollars # => 31.98 EUR
|
56
|
+
fifty_eur / 2 # => 25 EUR
|
57
|
+
twenty_dollars * 3 # => 60 USD
|
58
|
+
|
59
|
+
# Comparisons (also in different currencies):
|
60
|
+
|
61
|
+
twenty_dollars == CurrencyManager::Money.new(20, 'USD') # => true
|
62
|
+
twenty_dollars == CurrencyManager::Money.new(30, 'USD') # => false
|
63
|
+
|
64
|
+
fifty_eur_in_usd = fifty_eur.convert_to('USD')
|
65
|
+
fifty_eur_in_usd == fifty_eur # => true
|
66
|
+
|
67
|
+
twenty_dollars > CurrencyManager::Money.new(5, 'USD') # => true
|
68
|
+
twenty_dollars < fifty_eur # => true
|
69
|
+
```
|
70
|
+
|
71
|
+
## Development
|
72
|
+
|
73
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
74
|
+
|
75
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
76
|
+
|
77
|
+
## Contributing
|
78
|
+
|
79
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/arnas127/currency_manager.
|
80
|
+
|
81
|
+
|
82
|
+
## License
|
83
|
+
|
84
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
85
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "currency_manager"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'currency_manager/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'currency_manager'
|
8
|
+
spec.version = CurrencyManager::VERSION
|
9
|
+
spec.authors = ['Arnas Rutkauskas']
|
10
|
+
spec.email = ['arnas127@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = %q{Currency managment}
|
13
|
+
spec.description = %q{Operate with currencies by your defined rates}
|
14
|
+
spec.homepage = 'https://github.com/arnas127/converter'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.add_development_dependency 'bundler', '~> 1.14'
|
25
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
26
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
27
|
+
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
module CurrencyManager
|
2
|
+
class Money
|
3
|
+
@@rates = {}
|
4
|
+
|
5
|
+
def initialize(amount, currency)
|
6
|
+
raise ArgumentError, 'currency rate is not a Number' unless amount.is_a? Numeric
|
7
|
+
raise ArgumentError, 'currency name is not a String' unless currency.is_a? String
|
8
|
+
@amount = amount
|
9
|
+
@currency = currency
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.conversion_rates(currency, rates = {})
|
13
|
+
raise ArgumentError, 'base currency key is not a String' unless currency.is_a? String
|
14
|
+
raise ArgumentError, 'base currency rates is not a Hash' unless rates.is_a? Hash
|
15
|
+
@@rates = {}
|
16
|
+
|
17
|
+
rates.each do |key, value|
|
18
|
+
unless key.is_a? String
|
19
|
+
@@rates = {}
|
20
|
+
raise ArgumentError, 'currency key is not a String'
|
21
|
+
end
|
22
|
+
|
23
|
+
unless value.is_a? Numeric
|
24
|
+
@@rates = {}
|
25
|
+
raise ArgumentError, "currency '#{key}' rate is not a Number"
|
26
|
+
end
|
27
|
+
|
28
|
+
@@rates[key.downcase] = value
|
29
|
+
end
|
30
|
+
|
31
|
+
@@base_currency = currency.downcase
|
32
|
+
@@rates[@@base_currency] = 1
|
33
|
+
true
|
34
|
+
end
|
35
|
+
|
36
|
+
def amount
|
37
|
+
@amount
|
38
|
+
end
|
39
|
+
|
40
|
+
def currency
|
41
|
+
@currency
|
42
|
+
end
|
43
|
+
|
44
|
+
def inspect
|
45
|
+
'%.2f ' % @amount + @currency
|
46
|
+
end
|
47
|
+
|
48
|
+
def convert_to(new_currency)
|
49
|
+
new_amount = convert_amount(@amount, @currency, new_currency)
|
50
|
+
self.class.new(new_amount, new_currency)
|
51
|
+
end
|
52
|
+
|
53
|
+
%w(/ *).each do |method_name|
|
54
|
+
define_method(method_name) do |number|
|
55
|
+
raise ArgumentError, 'can\'t operate with not a Number' unless number.is_a? Numeric
|
56
|
+
calculated_amount = @amount.to_f.send(method_name, number)
|
57
|
+
self.class.new(calculated_amount, @currency)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
%w(+ -).each do |method_name|
|
62
|
+
define_method(method_name) do |money|
|
63
|
+
money?(money)
|
64
|
+
new_amount = convert_amount(money.amount, money.currency, @currency)
|
65
|
+
calculated_amount = @amount.send(method_name, new_amount)
|
66
|
+
self.class.new(calculated_amount, @currency)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
%w(< >).each do |method_name|
|
71
|
+
define_method(method_name) do |money|
|
72
|
+
money?(money)
|
73
|
+
new_amount = convert_amount(money.amount, money.currency, @currency)
|
74
|
+
@amount.send(method_name, new_amount)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def ==(money)
|
79
|
+
return false unless money.is_a?(self.class)
|
80
|
+
new_amount = convert_amount(money.amount, money.currency, @currency)
|
81
|
+
@amount.round(2) == new_amount.round(2)
|
82
|
+
end
|
83
|
+
|
84
|
+
private
|
85
|
+
|
86
|
+
def convert_amount(amount, old_currency, new_currency)
|
87
|
+
if @@rates.has_key?(new_currency.downcase) && @@rates.has_key?(old_currency.downcase)
|
88
|
+
amount.fdiv(@@rates[old_currency.downcase]) * @@rates[new_currency.downcase]
|
89
|
+
else
|
90
|
+
raise ArgumentError, 'undefined currency rate'
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def money?(money)
|
95
|
+
raise ArgumentError, "must be instance of #{self.class}" unless money.is_a?(self.class)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: currency_manager
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Arnas Rutkauskas
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-05-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.14'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.14'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: Operate with currencies by your defined rates
|
56
|
+
email:
|
57
|
+
- arnas127@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- bin/console
|
70
|
+
- bin/setup
|
71
|
+
- currency_manager.gemspec
|
72
|
+
- lib/currency_manager.rb
|
73
|
+
- lib/currency_manager/money.rb
|
74
|
+
- lib/currency_manager/version.rb
|
75
|
+
homepage: https://github.com/arnas127/converter
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.6.8
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: Currency managment
|
99
|
+
test_files: []
|