kucoin_ruby 0.1.4 → 0.1.5

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: 0aa51631734d147b3f984554ada24a022a8335e0
4
- data.tar.gz: 8c2879a026e145796e9a87a11bcafd349c163900
3
+ metadata.gz: 67e19f0be53ac1708b91f2f9c181cc19e76d291b
4
+ data.tar.gz: 45160284006711933369a8047655461f4689e8e1
5
5
  SHA512:
6
- metadata.gz: 4d032f9ecf36485febf7f2218d0ecb38ff92b04ec625b2556023fb3d8b13c1187c2b488398ebfe47ea9fbc0a17f59c2a87c48fdabbb3797984c03f932fa76e2f
7
- data.tar.gz: 18e992c7e9069af0ea63e6961a6fd98d985cf1235507c030bfcf721351c7566a4282d9e5a2e229164f30954602a09a63217ef24a634b062ff35fbc4e8a8e6426
6
+ metadata.gz: 1e559e10698c4a41fafdf6010f7a464c2a43b38073e8a4f4aaa36184650bba9f68fe9483291895d6c9eec6332a13fda882c41149ec99fb80bdca9e52216e1a9f
7
+ data.tar.gz: 230c0280806ae13e13697b480152a4ace549e8dd5ed90840bb8ff408ebbbbd4398e479d96d1413baff1f318421d8449ec4d385702712c62d8e201d64e41ae44d
data/.gitignore CHANGED
@@ -7,3 +7,4 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
  .env
10
+ coverage
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.1.5
2
+
3
+ ### Changed
4
+
5
+ - Add Simplecov gem
6
+ - Setup Rspec
7
+ - Add some Rspec tests
8
+
1
9
  ## 0.1.4
2
10
 
3
11
  ### Changed
data/Gemfile CHANGED
@@ -4,3 +4,6 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
5
  # Specify your gem's dependencies in kucoin_ruby.gemspec
6
6
  gemspec
7
+
8
+ gem 'simplecov', :require => false, :group => :test
9
+
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- kucoin_ruby (0.1.4)
4
+ kucoin_ruby (0.1.5)
5
5
  addressable
6
6
  httparty
7
7
 
@@ -12,8 +12,10 @@ GEM
12
12
  public_suffix (>= 2.0.2, < 4.0)
13
13
  coderay (1.1.2)
14
14
  diff-lcs (1.3)
15
+ docile (1.1.5)
15
16
  httparty (0.15.6)
16
17
  multi_xml (>= 0.5.2)
18
+ json (2.1.0)
17
19
  method_source (0.9.0)
18
20
  multi_xml (0.6.0)
19
21
  openssl (2.0.6)
@@ -35,6 +37,11 @@ GEM
35
37
  diff-lcs (>= 1.2.0, < 2.0)
36
38
  rspec-support (~> 3.7.0)
37
39
  rspec-support (3.7.0)
40
+ simplecov (0.15.1)
41
+ docile (~> 1.1.0)
42
+ json (>= 1.8, < 3)
43
+ simplecov-html (~> 0.10.0)
44
+ simplecov-html (0.10.2)
38
45
 
39
46
  PLATFORMS
40
47
  ruby
@@ -46,6 +53,7 @@ DEPENDENCIES
46
53
  pry
47
54
  rake (~> 10.0)
48
55
  rspec
56
+ simplecov
49
57
 
50
58
  BUNDLED WITH
51
59
  1.16.0
@@ -14,11 +14,11 @@ module KucoinRuby
14
14
 
15
15
  def self.headers(nonce, signature)
16
16
  {
17
- 'Content-Type': 'application/json',
18
- 'KC-API-KEY': key,
19
- 'KC-API-NONCE': nonce,
20
- 'KC-API-SIGNATURE': signature,
21
- "Accept-Language": 'en_EN'
17
+ 'Content-Type' => 'application/json',
18
+ 'KC-API-KEY' => key,
19
+ 'KC-API-NONCE' => nonce,
20
+ 'KC-API-SIGNATURE' => signature,
21
+ "Accept-Language" => 'en_EN'
22
22
  }
23
23
  end
24
24
 
@@ -1,3 +1,3 @@
1
1
  module KucoinRuby
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kucoin_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - lalo
@@ -116,6 +116,7 @@ extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
118
  - ".gitignore"
119
+ - ".rspec"
119
120
  - CHANGELOG.md
120
121
  - CODE_OF_CONDUCT.md
121
122
  - Gemfile