txcatcher 0.1.84 → 0.1.85

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
2
  SHA1:
3
- metadata.gz: 0d1a18431d76cce582aecace5022e5015928cb90
4
- data.tar.gz: a7bb038aacbdb195c050b039f680e4343f0a917c
3
+ metadata.gz: b38221c572549590a66aeee17bd40d9faf33cd23
4
+ data.tar.gz: 2f23c67720cc64544ed1feda49c656f5fca4e538
5
5
  SHA512:
6
- metadata.gz: 1be43c8df7bc8c4ee696cd3f1f5af5396766b7a68ebbed83ee6aee2e1f1af1241fcaf587ae7c4e236154838f0914acd4a84555b78991d291abbde3f1833b08fa
7
- data.tar.gz: 5a9c0db19e0b29cade49bf47b9ba85bf2f46ff4607b940f5557bfc8e20a880fc7544c2eab7be8fea2e82781122a95a4c19fe3a870f6172331092edb48ec46351
6
+ metadata.gz: c895162372eacf4102e6cf051e897a0af141fe4779e5865635121ebb57036954f6fd48f3e370cfa323a9795788cd0b5815ffec8a34a4c29962094bb82d924ead
7
+ data.tar.gz: 73141d20ac2af88b1cbafbff568becbf8349ecb87df09ecebe58431ccb459c5325be8446076fd6277e5cee9a8eeb0c0911fd8a20cad06a36db1c98342cbd16ec
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.84
1
+ 0.1.85
@@ -3,7 +3,7 @@ module TxCatcher
3
3
  class CryptoUnit
4
4
 
5
5
  def self.new(type, amount, *args)
6
- if type == :ltc || type == :litecoin
6
+ if type.to_s == "ltc" || type.to_s == "litecoin"
7
7
  return LitoshiUnit.new(amount, *args)
8
8
  else
9
9
  return SatoshiUnit.new(amount, *args)
data/txcatcher.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: txcatcher 0.1.84 ruby lib
5
+ # stub: txcatcher 0.1.85 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "txcatcher"
9
- s.version = "0.1.84"
9
+ s.version = "0.1.85"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: txcatcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.84
4
+ version: 0.1.85
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Snitko