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 +4 -4
- data/README.md +16 -5
- data/cbx.gemspec +2 -2
- data/lib/cbx.rb +1 -1
- data/lib/cbx/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f33df9c4f8cbf40452cb09df7782456bea54bc5
|
|
4
|
+
data.tar.gz: d784b77f9d0342c51a80b3210f64a5f563fed1a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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/
|
|
2
|
+
(https://github.com/dan-silver/coinbase_exchange)
|
|
3
3
|
|
|
4
|
-
|
|
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
|
-
|
|
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"
|
data/cbx.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'cbx'
|
|
3
|
-
s.version = '0.0.
|
|
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
|
|
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
data/lib/cbx/version.rb
CHANGED
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.
|
|
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
|
|
48
|
+
description: A complete interface to the Coinbase Exchange trading API.
|
|
49
49
|
email:
|
|
50
50
|
- mikebrodrigues@gmail.com
|
|
51
51
|
- dannysilver3@gmail.com
|