module-render-xyz 0.1.2 → 0.1.3

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
  SHA256:
3
- metadata.gz: 007d72f62b0d35ae5dbac6e7ed85f96e495c288c430b7417933f5764b403f022
4
- data.tar.gz: bc9f16c3a243a195fd2338e97f5254e904421d74e8b508906df078cfab651dd9
3
+ metadata.gz: 2191323ec8f661bec9b333080339179909b998c9daa9d375756d95a90bc5bd95
4
+ data.tar.gz: 7f0301e0f377c0a3753b64b8288fad5158528623a8bfdda6c8ff84ae021d97b6
5
5
  SHA512:
6
- metadata.gz: cbe037084afeaf96562b4f3ad5a9c64a5d005207a9b8745f0509aa015dd864528ec10e934ea4adf256f6bcab0a9310796dbb279018cf8d95a62188cd2362ea41
7
- data.tar.gz: 1b2c1aff00c6bf564bab5d2564d1c890b8d4ce565e1b057987a9a5cfaec47c1019efa0d6283b88c07cf7b0202bea6ade129d6ac33293c3d703946e38cbfecfc6
6
+ metadata.gz: be5c5c5cd3cff6d118567cfa857efc179f6c5fe241d6d789e92419edebd8089e2f9a48ce43d26a3ad5d0a0c59eed4e90d6811ef6bab52894b6af04c2b145a085
7
+ data.tar.gz: 4e05964e74eb442479f44cc1e3afb3ada91ca0b84e1b5eb254e301d8d8e68bcf20359245c7be2b9fcbc25dc3923db1633839e487ec3dc47837e03512a98fed96
@@ -1,19 +1,20 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- module-render-xyz (0.1.1)
4
+ module-render-xyz (0.1.3)
5
5
  activesupport (~> 5.2.3)
6
6
  better-faraday (~> 1.0.5)
7
7
  faraday (~> 0.15.4)
8
8
  memoist (~> 0.16.0)
9
+ net-http-persistent (~> 3.0.1)
9
10
  peatio (~> 0.6.1)
10
11
 
11
12
  GEM
12
13
  remote: https://rubygems.org/
13
14
  specs:
14
- activemodel (5.2.3)
15
- activesupport (= 5.2.3)
16
- activesupport (5.2.3)
15
+ activemodel (5.2.4)
16
+ activesupport (= 5.2.4)
17
+ activesupport (5.2.4)
17
18
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
19
  i18n (>= 0.7, < 2)
19
20
  minitest (~> 5.1)
@@ -24,15 +25,16 @@ GEM
24
25
  amqp (1.8.0)
25
26
  amq-protocol (>= 2.2.0)
26
27
  eventmachine
27
- better-faraday (1.0.5)
28
+ better-faraday (1.0.8)
28
29
  activesupport (>= 4.0, < 6.0)
29
30
  faraday (~> 0.12)
30
- bunny (2.14.2)
31
+ bunny (2.14.3)
31
32
  amq-protocol (~> 2.3, >= 2.3.0)
32
33
  byebug (11.0.1)
33
- clamp (1.3.0)
34
+ clamp (1.3.1)
34
35
  coderay (1.1.2)
35
36
  concurrent-ruby (1.1.5)
37
+ connection_pool (2.2.2)
36
38
  crack (0.4.3)
37
39
  safe_yaml (~> 1.0.0)
38
40
  diff-lcs (1.3)
@@ -44,19 +46,21 @@ GEM
44
46
  multipart-post (>= 1.2, < 3)
45
47
  hashdiff (0.3.9)
46
48
  http_parser.rb (0.6.0)
47
- i18n (1.6.0)
49
+ i18n (1.7.0)
48
50
  concurrent-ruby (~> 1.0)
49
51
  jwt (2.2.1)
50
- memoist (0.16.0)
52
+ memoist (0.16.2)
51
53
  metaclass (0.0.4)
52
54
  method_source (0.9.2)
53
- minitest (5.11.3)
55
+ minitest (5.13.0)
54
56
  mocha (1.8.0)
55
57
  metaclass (~> 0.0.1)
56
58
  multipart-post (2.1.1)
57
- mysql2 (0.5.2)
58
- peatio (0.6.1)
59
- activemodel (~> 5.2.3)
59
+ mysql2 (0.5.3)
60
+ net-http-persistent (3.0.1)
61
+ connection_pool (~> 2.2)
62
+ peatio (0.6.3)
63
+ activemodel (> 5.2, <= 6.0.0)
60
64
  amqp
61
65
  bunny
62
66
  clamp
@@ -107,4 +111,4 @@ DEPENDENCIES
107
111
  webmock (~> 3.5)
108
112
 
109
113
  BUNDLED WITH
110
- 1.16.3
114
+ 1.17.3
data/README.md CHANGED
@@ -24,6 +24,14 @@ Build GEM
24
24
 
25
25
  gem build peatio-infura.gemspec
26
26
 
27
+ Test GEM
28
+
29
+
30
+ ./bin/setup
31
+ ./bin/console
32
+ client = Peatio::Infura::Client.new('https://rinkeby.infura.io/v3/b5d560f71a4341428acacd4a5b25a8a0','https://rinkeby.infura.io/v3/b5d560f71a4341428acacd4a5b25a8a0')
33
+ client.json_rpc(:eth_blockNumber)
34
+
27
35
  Push GEM
28
36
 
29
37
  gem push peatio-infura-0.1.0.gem
@@ -1,5 +1,5 @@
1
1
  module Peatio
2
2
  module Infura
3
- VERSION = "0.1.2".freeze
3
+ VERSION = "0.1.3".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: module-render-xyz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sunil J.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-13 00:00:00.000000000 Z
11
+ date: 2019-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-http-persistent