huobi_client 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 738bf1b91127f89188c95a3f40f7e1c294cbe53b
4
+ data.tar.gz: bfee8289ea561f460d4711f0601968e43dcdcfc4
5
+ SHA512:
6
+ metadata.gz: 65dd614091858e09a4b0014a9d1fc59f71ed9d081dfccda49e17bafe8c8a4375d3ab482c7dd5db40bb174166b76bbc0865ce64640364d78a6b536825da475d9e
7
+ data.tar.gz: b2d63e1f23d8baaae33329cd90ad502e9a945bad5dc5d85640067dbd7e0ad7939bf9b9e92a9d412c64f414b2f09a636df4643b507662cfb48de394cf033f1d9c
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.16.1
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in huobi_client.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,74 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ huobi_client (0.1.0)
5
+ activerecord (~> 5.2.0)
6
+ awesome_print (~> 1.8.0)
7
+ faraday (~> 0.15)
8
+ faraday_middleware (~> 0.12.2)
9
+ json (~> 2.1)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ activemodel (5.2.0)
15
+ activesupport (= 5.2.0)
16
+ activerecord (5.2.0)
17
+ activemodel (= 5.2.0)
18
+ activesupport (= 5.2.0)
19
+ arel (>= 9.0)
20
+ activesupport (5.2.0)
21
+ concurrent-ruby (~> 1.0, >= 1.0.2)
22
+ i18n (>= 0.7, < 2)
23
+ minitest (~> 5.1)
24
+ tzinfo (~> 1.1)
25
+ arel (9.0.0)
26
+ awesome_print (1.8.0)
27
+ coderay (1.1.2)
28
+ concurrent-ruby (1.0.5)
29
+ diff-lcs (1.3)
30
+ faraday (0.15.0)
31
+ multipart-post (>= 1.2, < 3)
32
+ faraday_middleware (0.12.2)
33
+ faraday (>= 0.7.4, < 1.0)
34
+ i18n (1.0.1)
35
+ concurrent-ruby (~> 1.0)
36
+ json (2.1.0)
37
+ method_source (0.9.0)
38
+ minitest (5.11.3)
39
+ multipart-post (2.0.0)
40
+ pry (0.11.3)
41
+ coderay (~> 1.1.0)
42
+ method_source (~> 0.9.0)
43
+ rake (10.5.0)
44
+ rspec (3.7.0)
45
+ rspec-core (~> 3.7.0)
46
+ rspec-expectations (~> 3.7.0)
47
+ rspec-mocks (~> 3.7.0)
48
+ rspec-core (3.7.1)
49
+ rspec-support (~> 3.7.0)
50
+ rspec-expectations (3.7.0)
51
+ diff-lcs (>= 1.2.0, < 2.0)
52
+ rspec-support (~> 3.7.0)
53
+ rspec-mocks (3.7.0)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.7.0)
56
+ rspec-support (3.7.1)
57
+ safe_yaml (1.0.4)
58
+ thread_safe (0.3.6)
59
+ tzinfo (1.2.5)
60
+ thread_safe (~> 0.1)
61
+
62
+ PLATFORMS
63
+ ruby
64
+
65
+ DEPENDENCIES
66
+ bundler (~> 1.16)
67
+ huobi_client!
68
+ pry (~> 0.11.3)
69
+ rake (~> 10.0)
70
+ rspec (~> 3.0)
71
+ safe_yaml (~> 1.0.4)
72
+
73
+ BUNDLED WITH
74
+ 1.16.1