fixed_ruby_coincheck_client 0.3.0 → 0.3.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 +4 -4
- data/README.md +4 -3
- data/lib/ruby_coincheck_client/coincheck_client.rb +1 -1
- data/lib/ruby_coincheck_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94fc759289c9a6de94144a6bba94ba9940e96540
|
4
|
+
data.tar.gz: 5a7b5cc4a983f1cf33bd82c0c91660c337f736e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b00ac14a50b2dd54c69249a1d2f91c4a1521a6acb3eadf2b33285190ede8e3247e23f00dfcd2a69b2eef5b2b3be38883033235c41c208cb1ed51ef9d0d4540ea
|
7
|
+
data.tar.gz: 6a0eb6180446532917ed0d1a4402c0401a802a1c4e5fb74b3c36e587459cfa3560fee211bc990522e436133bc579339213c22ff561989513c13021898afb4d66
|
data/README.md
CHANGED
@@ -3,13 +3,14 @@
|
|
3
3
|
# RubyCoincheckClient
|
4
4
|
|
5
5
|
This is ruby client implementation for Coincheck API.
|
6
|
+
One thing different from official one is that this gem doesn't have the error that occurs when we call the read_trades method.
|
6
7
|
|
7
8
|
## Installation
|
8
9
|
|
9
10
|
Add this line to your application's Gemfile:
|
10
11
|
|
11
12
|
```ruby
|
12
|
-
gem '
|
13
|
+
gem 'fixed_ruby_coincheck_client'
|
13
14
|
```
|
14
15
|
|
15
16
|
And then execute:
|
@@ -18,13 +19,13 @@ And then execute:
|
|
18
19
|
|
19
20
|
Or install it yourself as:
|
20
21
|
|
21
|
-
$ gem install
|
22
|
+
$ gem install fixed_ruby_coincheck_client
|
22
23
|
|
23
24
|
## Usage
|
24
25
|
|
25
26
|
```ruby
|
26
27
|
#!/usr/bin/env ruby -Ilib
|
27
|
-
require '
|
28
|
+
require 'fixed_ruby_coincheck_client'
|
28
29
|
|
29
30
|
cc = CoincheckClient.new("YOUR API KEY", "YOUR SECRET KEY")
|
30
31
|
response = cc.read_balance
|