money-coinmarketcap-bank 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99e15350374b01622deda04e9878bf8aa164a533
4
- data.tar.gz: 5a9c981919f0eb7312b8abf3f4db5b71f86e5f47
3
+ metadata.gz: bff0ce0c014da0c739cd43d37c490cdc2470ee28
4
+ data.tar.gz: ea01fabf8783b5de01e916cc1220c11068737c72
5
5
  SHA512:
6
- metadata.gz: 8e96f369324eec7b1c5c8d27ef552a708ec129381bf1e83218ff778b8e5e164d3e3420a791d80894f8592b9a4ba74025de71bc9d427020d0c6593c40e5a45a34
7
- data.tar.gz: 3dd0456f5311dbcce38b2b9ae0c220db23021b88dbd90d40f3378e61b91497a8a1a5b48ae58ce5594611c8d8f6f8f5811ecad6f5b67cf47b553f5d3d85182bc2
6
+ metadata.gz: ed5acd73d1b9249d92e97c3810352d039654b45af04ade21bab2de5e9ded914c7a8ea170750d3249c1473a51aaaa717c04c0e1fd617fce35528c9eb48f0440ec
7
+ data.tar.gz: 6ea69be734e13bf1d33e7c8897ec923b7a55d7e50009ad0d3500a956f5697293fd5a7917dc2f6d6229d1ccda2ec6cc4fdb2772d00932c26fb9c5b72b9deca390
@@ -13,7 +13,7 @@ class Money
13
13
  attr_accessor :ttl_in_seconds
14
14
 
15
15
  # List of currencies
16
- attr_reader :currencies
16
+ attr_reader :currencies_list
17
17
 
18
18
  # Rates expiration time
19
19
  attr_reader :rates_expire_at
@@ -29,7 +29,7 @@ class Money
29
29
  add_rate(iso_from, iso_to, nil)
30
30
  end
31
31
 
32
- self.currencies = []
32
+ self.currencies_list = []
33
33
 
34
34
  add_exchange_rates
35
35
  end
@@ -72,7 +72,7 @@ class Money
72
72
  next if currency['availableSupplyNumber'] == 0
73
73
 
74
74
  iso_from = currency['symbol']
75
- self.currencies << iso_from
75
+ @currencies_list << iso_from
76
76
 
77
77
  currency['price'].each do |iso_to, rate|
78
78
  iso_to = iso_to.upcase
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new { |s|
2
2
  s.name = 'money-coinmarketcap-bank'
3
- s.version = '0.1.4'
3
+ s.version = '0.1.5'
4
4
  s.author = 'Giovanni Capuano'
5
5
  s.email = 'webmaster@giovannicapuano.net'
6
6
  s.homepage = 'https://github.com/RoxasShadow'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: money-coinmarketcap-bank
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Giovanni Capuano