flow_client 0.1.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77827a004fe0125e3476d61a0f50a93d4d27d69e7212ba72415650568efc34a6
4
- data.tar.gz: 5d7a508b6113ba6ee5822ef729f165552186b4b4b961305b2deb395356705850
3
+ metadata.gz: 5af7d7f1ba7669936797c908286ae084ca35d28ce1403767c7e670516391c744
4
+ data.tar.gz: 9ece3c471fb71a3bd5fadaac858e72681ee5db0e9259cc6871c4c413e56b2f8a
5
5
  SHA512:
6
- metadata.gz: 4931c719ba25d3114cca80f94b5417c0f8347bb192cd9796250b6eda7cc290aa37dee0bef5cc2ec2a14ebde548c5916998b639dcce1dfbd3d95b52fded0a3e1f
7
- data.tar.gz: e73cc7e7dd2d2ae170d55b821cf930816d6f9a640ecf16be396c482a963d262790d0b40c6844f3561152fa498fd898104fdad7c252b660fe9dba67d4148a4149
6
+ metadata.gz: 88ba90c30234850aea96ef88fa41592429634a475fce24d931396a17b1214fa6c9e4080e04d754cb7429629e007dff51a6ecf6a94346ccea0ddae02d7af8ddfc
7
+ data.tar.gz: 5b3a241597f592be576678ac36e6c2196bb9efca62442c2ba27dd8fb185db70028d30e6185845a122fa7276f43bac21195db3388308413927faad6b7032ebd7b
@@ -31,5 +31,7 @@ jobs:
31
31
  with:
32
32
  ruby-version: ${{ matrix.ruby-version }}
33
33
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
34
+ - name: Start the Flow emulator
35
+ run: docker-compose up -d
34
36
  - name: Run tests
35
37
  run: bundle exec rake
data/.rubocop.yml CHANGED
@@ -18,3 +18,9 @@ Style/StringLiteralsInInterpolation:
18
18
 
19
19
  Layout/LineLength:
20
20
  Max: 120
21
+
22
+ Metrics/BlockLength:
23
+ Exclude:
24
+ - 'Rakefile'
25
+ - '**/*.rake'
26
+ - 'spec/**/*.rb'
data/CHANGELOG.md CHANGED
@@ -3,3 +3,18 @@
3
3
  ## [0.1.0] - 2021-07-09
4
4
 
5
5
  - Initial release
6
+
7
+ ## [0.1.2] - 2021-07-09
8
+
9
+ - Initial release
10
+
11
+ ## [0.2.0] - 2021-11-08
12
+
13
+ - Added multiple signature support
14
+ - Added multi-party signing
15
+ - Added account creation
16
+ -
17
+ ## [0.2.1] - 2021-11-08
18
+
19
+ - Fixed incorrect CadenceType conversions
20
+ - Updated usage examples
data/Gemfile CHANGED
@@ -5,10 +5,7 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in flow_client.gemspec
6
6
  gemspec
7
7
 
8
+ gem "guard-rspec", "~> 4.7"
8
9
  gem "rake", "~> 13.0"
9
-
10
10
  gem "rspec", "~> 3.0"
11
-
12
- gem "rubocop", "~> 1.7"
13
-
14
- gem "guard-rspec", "~> 4.7"
11
+ gem "rubocop", "~> 1.22"
data/Gemfile.lock CHANGED
@@ -1,15 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flow_client (0.1.1)
5
- digest-sha3
6
- ecdsa
4
+ flow_client (0.2.2)
7
5
  grpc
8
6
  grpc-tools
9
7
  json
10
8
  openssl
11
9
  rlp
12
- rspec
13
10
 
14
11
  GEM
15
12
  remote: https://rubygems.org/
@@ -17,24 +14,22 @@ GEM
17
14
  ast (2.4.2)
18
15
  coderay (1.1.3)
19
16
  diff-lcs (1.4.4)
20
- digest-sha3 (1.0.2)
21
- ecdsa (1.2.0)
22
- ffi (1.15.3)
17
+ ffi (1.15.4)
23
18
  formatador (0.3.0)
24
- google-protobuf (3.17.3-universal-darwin)
25
- googleapis-common-protos-types (1.1.0)
19
+ google-protobuf (3.19.1-x86_64-darwin)
20
+ googleapis-common-protos-types (1.3.0)
26
21
  google-protobuf (~> 3.14)
27
- grpc (1.38.0-universal-darwin)
28
- google-protobuf (~> 3.15)
22
+ grpc (1.41.0-universal-darwin)
23
+ google-protobuf (~> 3.17)
29
24
  googleapis-common-protos-types (~> 1.0)
30
- grpc-tools (1.38.0)
31
- guard (2.17.0)
25
+ grpc-tools (1.41.0)
26
+ guard (2.18.0)
32
27
  formatador (>= 0.2.4)
33
28
  listen (>= 2.7, < 4.0)
34
29
  lumberjack (>= 1.0.12, < 2.0)
35
30
  nenv (~> 0.1)
36
31
  notiffany (~> 0.0)
37
- pry (>= 0.9.12)
32
+ pry (>= 0.13.0)
38
33
  shellany (~> 0.0)
39
34
  thor (>= 0.18.1)
40
35
  guard-compat (1.2.1)
@@ -42,8 +37,9 @@ GEM
42
37
  guard (~> 2.1)
43
38
  guard-compat (~> 1.1)
44
39
  rspec (>= 2.99.0, < 4.0)
45
- json (2.5.1)
46
- listen (3.5.1)
40
+ ipaddr (1.2.3)
41
+ json (2.6.1)
42
+ listen (3.7.0)
47
43
  rb-fsevent (~> 0.10, >= 0.10.3)
48
44
  rb-inotify (~> 0.9, >= 0.9.10)
49
45
  lumberjack (1.2.8)
@@ -52,8 +48,9 @@ GEM
52
48
  notiffany (0.1.3)
53
49
  nenv (~> 0.1)
54
50
  shellany (~> 0.0)
55
- openssl (2.2.0)
56
- parallel (1.20.1)
51
+ openssl (2.2.1)
52
+ ipaddr
53
+ parallel (1.21.0)
57
54
  parser (3.0.2.0)
58
55
  ast (~> 2.4.1)
59
56
  pry (0.14.1)
@@ -79,33 +76,32 @@ GEM
79
76
  rspec-mocks (3.10.2)
80
77
  diff-lcs (>= 1.2.0, < 2.0)
81
78
  rspec-support (~> 3.10.0)
82
- rspec-support (3.10.2)
83
- rubocop (1.18.3)
79
+ rspec-support (3.10.3)
80
+ rubocop (1.22.3)
84
81
  parallel (~> 1.10)
85
82
  parser (>= 3.0.0.0)
86
83
  rainbow (>= 2.2.2, < 4.0)
87
84
  regexp_parser (>= 1.8, < 3.0)
88
85
  rexml
89
- rubocop-ast (>= 1.7.0, < 2.0)
86
+ rubocop-ast (>= 1.12.0, < 2.0)
90
87
  ruby-progressbar (~> 1.7)
91
88
  unicode-display_width (>= 1.4.0, < 3.0)
92
- rubocop-ast (1.7.0)
89
+ rubocop-ast (1.13.0)
93
90
  parser (>= 3.0.1.1)
94
91
  ruby-progressbar (1.11.0)
95
92
  shellany (0.0.1)
96
93
  thor (1.1.0)
97
- unicode-display_width (2.0.0)
94
+ unicode-display_width (2.1.0)
98
95
 
99
96
  PLATFORMS
100
97
  x86_64-darwin-20
101
- x86_64-linux
102
98
 
103
99
  DEPENDENCIES
104
100
  flow_client!
105
101
  guard-rspec (~> 4.7)
106
102
  rake (~> 13.0)
107
103
  rspec (~> 3.0)
108
- rubocop (~> 1.7)
104
+ rubocop (~> 1.22)
109
105
 
110
106
  BUNDLED WITH
111
- 2.2.22
107
+ 2.2.26