poloniex_api 0.0.3 → 0.0.4

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: d67e0b5029e2cf691571bb8e164dfc71f3cc762f
4
- data.tar.gz: b17f7d6c8b83a7c726f9858be42bc4a5e3dd1da2
3
+ metadata.gz: 175b0e44d5c9b20418ff063068c9d9af3522cd00
4
+ data.tar.gz: fd805e3f8c9a72bc81f1b186e6ba6ac1c24ee03e
5
5
  SHA512:
6
- metadata.gz: ee30d2d735508fc43205aa5ea7d1b27b47f6e687472b0e3e97a201373cf32623edd22f8285932595b7e3dd43a35cce92619bc688aacdc5a0ec9e39da38274ee2
7
- data.tar.gz: 0ed9c4f50b66b9ed894ad3f07eda3c6e316228c440a9377e0a6592b27878e57656ccde31ce883dd64d07e4c70e7418bee63bb5663758446221a893f354400ebc
6
+ metadata.gz: 83e225a2efb6d264b033f498e9874272c7ec2896432b2136f9a48c812518aee7137ebfb4983e5485d22f4d2a097658f6efcd15fec157b399d0000d98044c8ec2
7
+ data.tar.gz: 093d17fef14f6bc27827b4d517b21a7945611a0a21b73a762c39f7c75c0a81611ccd1394a08faf95cf173f96b1f5d51e6764b4c530413e3303f0b25e16badbca
data/CHANGELOG.md CHANGED
@@ -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.4] - 2017-08-30
5
+
6
+ ### Changed
7
+ - Require 'openssl'
8
+
4
9
  ## [0.0.3] - 2017-08-30
5
10
 
6
11
  ### Changed
@@ -23,3 +28,4 @@ All notable changes to this project will be documented in this file.
23
28
  [Unreleased]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.2...HEAD
24
29
  [0.0.2]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.1...v0.0.2
25
30
  [0.0.3]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.2...v0.0.3
31
+ [0.0.4]: https://github.com/brianmcmichael/poloniex_api/compare/v0.0.3...v0.0.4
@@ -1,3 +1,3 @@
1
1
  module Poloniex
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
data/lib/poloniex.rb CHANGED
@@ -38,8 +38,8 @@ require 'json'
38
38
  require 'logger'
39
39
  require 'uri'
40
40
  require 'base64'
41
- require 'digest'
42
41
  require 'timeout'
42
+ require 'openssl'
43
43
 
44
44
  module Poloniex
45
45
 
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.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian McMichael