koin 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f08a74a85fe9fe9dc34ae159cb7453cab9f35266
4
- data.tar.gz: 88489f06bcb08b4afb9649c4fc40557324a0ebd8
2
+ SHA256:
3
+ metadata.gz: 6cab449cf67b4027b36b26fe451d00c4dbf1bd4270440df31167d9e8f99966db
4
+ data.tar.gz: 5eb5e57977ca041ff9c38950206441286ca5a8fd0d4f34c87fa82881f771b795
5
5
  SHA512:
6
- metadata.gz: 03467f30dc0f6f24447c52f86f46ff533a6a7ae140712f4a0d686b56c33eaf4179f8b80738b5c899f6948b5732a17dde95b6294457aa9f42e32b48ce9b169763
7
- data.tar.gz: '09d5bda3e7965a8bb303c5c7e77ed482cf32e4a32cd46b167d7af9d1d4c714613a233331760b394450a856172c747c1aaa1e80e2d4aebf6f32243c9297f7d61c'
6
+ metadata.gz: 4f0d93665a366240b6926595b32e38f9750b786522bfb9bb49d388d8dfb6f4d07b8ce1f4ae02098a0490843a78870fb54fbc786f0837c0484df7baf7aa1c4df6
7
+ data.tar.gz: 0c53b49439f951080890e14022b80437f4c6cd7cac52ac145d577b410860fbff640b4c06b66044e6df527d65e650ab5961c9dec426755c65d606d73625f73a63
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- koin (0.5.1)
4
+ koin (0.5.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -8,7 +8,6 @@ class Koin < BigDecimal
8
8
  @currency = currency&.upcase
9
9
 
10
10
  if value.is_a?(Float)
11
- puts "VALUE IS A FLOAT! #{value}"
12
11
  super(value, 16)
13
12
  elsif value.is_a?(Koin)
14
13
  @currency ||= value.currency
@@ -1,4 +1,4 @@
1
1
  require 'bigdecimal'
2
2
  class Koin < BigDecimal
3
- VERSION = "0.5.1"
3
+ VERSION = "0.5.2"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: koin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carl Mercier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-04 00:00:00.000000000 Z
11
+ date: 2018-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  version: '0'
94
94
  requirements: []
95
95
  rubyforge_project:
96
- rubygems_version: 2.6.13
96
+ rubygems_version: 2.7.3
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Koin is a data type to represent cryptocurrency values in Ruby.