bitfex 1.0.0 → 1.0.1

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: 48dee944d055d0fc34b02b5274318b5a29e8ba90
4
- data.tar.gz: ce71b2da754d0fd723f43ecbb13bda6de494ea68
3
+ metadata.gz: 9a7ede0cfe5dcbec288e65a097637360184faa2d
4
+ data.tar.gz: b9577de74866c417a9c321b13668eb459b7dc6b2
5
5
  SHA512:
6
- metadata.gz: b7a21692f5e32252b1d5532d937b2b7b899cf36a24d281859a1d17016ae7f26256e69fd530829e770677bb00b6df079446a02fd6789077a625b25fe0537ab668
7
- data.tar.gz: 4a502dbc78d54f8979274a3bdbfee6690b91753e9dfb88fc1ad1b430d5be6088b68b9a7efdf6551575433d2ef75df1cace0c31f46042578781d6efac7195424d
6
+ metadata.gz: d1b338a37afe0e0b1106055429f3c27b3d524cc0cc62f482c004c0ad7715016e8960d9c07d872c5a8df655e14b035b165ea1088b971ad9a5ec8eaf7dc16ae2e4
7
+ data.tar.gz: e3c8d4962829e9520c6851647cde2785e9e7281c8b50ad56d131e054db4f4f817bd51921129fdb6fea32a773428b70c90eb3e8fd09a92507b0f0ee225154191c
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/bitfex.svg)](https://badge.fury.io/rb/bitfex)
2
+
1
3
  # BitFex API for ruby
2
4
 
3
5
  Simple implementation of BitFex.Trade API for ruby.
@@ -9,7 +11,7 @@ Simple implementation of BitFex.Trade API for ruby.
9
11
  ```ruby
10
12
  require 'bitfex'
11
13
 
12
- client = Bitfex::Api.new()
14
+ client = Bitfex::Api.new
13
15
  # make auth
14
16
  client.auth('user@example.com', 'password')
15
17
  # call API methods
@@ -18,7 +20,7 @@ client.balances # => {'BTC' => 15.0}
18
20
 
19
21
  ## Methods
20
22
 
21
- Methods documentation could be found in source =/
23
+ All available methods documentation: http://www.rubydoc.info/gems/bitfex/
22
24
 
23
25
  # Legal
24
26
 
@@ -1,6 +1,6 @@
1
- require './lib/bitfex/version'
2
- require './lib/bitfex/errors'
3
- require './lib/bitfex/api'
1
+ require 'bitfex/version'
2
+ require 'bitfex/errors'
3
+ require 'bitfex/api'
4
4
 
5
5
  module Bitfex
6
6
  end
@@ -1,5 +1,5 @@
1
1
  module Bitfex
2
- VERSION_INFO = [1, 0, 0].freeze
2
+ VERSION_INFO = [1, 0, 1].freeze
3
3
  VERSION = VERSION_INFO.map(&:to_s).join('.').freeze
4
4
 
5
5
  def self.version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitfex
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BitFex.Trade