cbx 0.0.1 → 0.0.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
2
  SHA1:
3
- metadata.gz: f63ca10d81b008dedae9cbae3d368aae9b15913c
4
- data.tar.gz: 57838a381e03f8e9b984727113332ac0068dc065
3
+ metadata.gz: 3f33df9c4f8cbf40452cb09df7782456bea54bc5
4
+ data.tar.gz: d784b77f9d0342c51a80b3210f64a5f563fed1a3
5
5
  SHA512:
6
- metadata.gz: 947eb218522c03eaa6baca54fa9005aad22bb032c5852f92215a8fcac35ac6b94795aa6483e2adf880019997739eda9cc9f7d7a558be82fd0e2843fe32df8768
7
- data.tar.gz: f7722a5e01299cd37dcaf0e11cc97abaae1cecb68a9883abd2a5cb26b8928db584b0f24acda945f033e9357cb35a3f8b08ce0a6a777d63e14458b5c18bf03a63
6
+ metadata.gz: 0e4e51d7262e7f9132184597b2a0ee1ac16ba9e0f1b11058b710094dd144821d6144316c79cda16c8471211cd10160657f425827277050e253e0733a75641d9c
7
+ data.tar.gz: 88c3e1a7eef1bc7a92756268bf66c378e34a75d01d50cfc0554b9cd3f45b0b6fc8d727e66fc234bbe35bef8f8d3fd4ad9432aa2bd1b61fec81393beb24a98813
data/README.md CHANGED
@@ -1,20 +1,31 @@
1
1
  This is a fork of a project originally authored by Daniel Silver
2
- (https://github.com/dan-silver/cbx)
2
+ (https://github.com/dan-silver/coinbase_exchange)
3
3
 
4
- The fork features convenience methods for all endpoint functionality and
4
+ This gem isn't officially endorsed, affiliated, or supported by Coinbase
5
+ Exchange.
6
+
7
+ # Ruby wrapper for the Coinbase Exchange API
8
+
9
+ The library wraps the http request and message signing and provides.
10
+
11
+ The fork adds convenience methods to access all of the API's functionality, and
5
12
  allows for unauthenticated access to Market Data and the WebSocket feed.
6
13
 
7
- # Coinbase Exchange Ruby Client
8
- The library wraps the http request and message signing. Create an account at https://exchange.coinbase.com to get started.
14
+ Create an account at https://exchange.coinbase.com to get started.
9
15
 
10
16
  ### NOTE - As a launch promo, there are [no Coinbase Exchange trading fees](http://blog.coinbase.com/post/109202118547/coinbase-launches-first-regulated-bitcoin-exchange) through the end of March.
11
17
 
12
18
  ## Installation
13
19
 
14
- Include this in your gemfile:
20
+ Include this in your gemfile for latest version from git:
15
21
 
16
22
  ```gem 'cbx', :git=> 'git://github.com/mikerodrigues/cbx.git'```
17
23
 
24
+ or from Rubygems, usually not far behind git master:
25
+
26
+ ```gem 'cbx'```
27
+
28
+
18
29
  ## Example
19
30
  ```ruby
20
31
  require "cbx"
@@ -1,9 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'cbx'
3
- s.version = '0.0.1'
3
+ s.version = '0.0.2'
4
4
  s.date = '2015-03-15'
5
5
  s.summary = "Ruby wrapper for the Coinbase Exchange API"
6
- s.description = "A complete interface to Coinbase Exchange's trading API."
6
+ s.description = "A complete interface to the Coinbase Exchange trading API."
7
7
  s.authors = ["Michael Rodrigues","Dan Silver"]
8
8
  s.email = ['mikebrodrigues@gmail.com', 'dannysilver3@gmail.com']
9
9
  s.files = Dir.glob('{bin,config,lib,test,doc}/**/*') + ['cbx.gemspec']
data/lib/cbx.rb CHANGED
@@ -7,7 +7,7 @@ require 'cbx/feed'
7
7
  require 'cbx/pagination'
8
8
  require 'cbx/trading'
9
9
  require 'cbx/market_data'
10
- require 'cbx/coinbase_signature_maker'
10
+ require 'cbx/cbx_signature_maker'
11
11
  require 'cbx/version'
12
12
 
13
13
  class CBX
@@ -1,3 +1,3 @@
1
1
  class CBX
2
- VERSION="0.0.1"
2
+ VERSION="0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cbx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rodrigues
@@ -45,7 +45,7 @@ dependencies:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
- description: A complete interface to Coinbase Exchange's trading API.
48
+ description: A complete interface to the Coinbase Exchange trading API.
49
49
  email:
50
50
  - mikebrodrigues@gmail.com
51
51
  - dannysilver3@gmail.com