poloniex_api 0.0.4 → 0.0.5

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: 175b0e44d5c9b20418ff063068c9d9af3522cd00
4
- data.tar.gz: fd805e3f8c9a72bc81f1b186e6ba6ac1c24ee03e
3
+ metadata.gz: 5f044f58c49d1a3730b6dac96a140e26eb9d22b3
4
+ data.tar.gz: bf63518bccc4e44ab86f98bd446ec1b6b53e6ac6
5
5
  SHA512:
6
- metadata.gz: 83e225a2efb6d264b033f498e9874272c7ec2896432b2136f9a48c812518aee7137ebfb4983e5485d22f4d2a097658f6efcd15fec157b399d0000d98044c8ec2
7
- data.tar.gz: 093d17fef14f6bc27827b4d517b21a7945611a0a21b73a762c39f7c75c0a81611ccd1394a08faf95cf173f96b1f5d51e6764b4c530413e3303f0b25e16badbca
6
+ metadata.gz: 33594cfa11ff521ccdb2a05e8835dee32394070d341c1924d78546e3c1628f820f78dce4529456916b9929cae43c6cb6e818c1f748739cda4a6bcfaf19f3803b
7
+ data.tar.gz: 115a5a2a9c4908daa74e7a2ff9db3d1789b64c480e28760acde63cbb812049da392dc3b0986d91121e51a58f45e5f9adfc1c1ee3dcb175a484c17e2d2fddd2ab
@@ -1,6 +1,11 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [0.0.5] - 2017-08-30
5
+
6
+ ### Changed
7
+ - Remove a puts command
8
+
4
9
  ## [0.0.4] - 2017-08-30
5
10
 
6
11
  ### Changed
@@ -29,3 +34,4 @@ All notable changes to this project will be documented in this file.
29
34
  [0.0.2]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.1...v0.0.2
30
35
  [0.0.3]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.2...v0.0.3
31
36
  [0.0.4]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.3...v0.0.4
37
+ [0.0.5]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.4...v0.0.5
@@ -93,7 +93,6 @@ module Poloniex
93
93
  # if an error is returned from poloniex.com
94
94
  # - returns decoded json api message """
95
95
  def call(command, args = {})
96
- puts command
97
96
  # Get command type
98
97
  cmd_type = self.check_command(command)
99
98
 
@@ -1,3 +1,3 @@
1
1
  module Poloniex
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: poloniex_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian McMichael