solana_rpc_ruby 1.2.0 → 1.3.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 +4 -4
- data/README.md +2 -1
- data/lib/solana_rpc_ruby/version.rb +1 -1
- data/solana_rpc_ruby.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2de89a051209d77ca5d7ee6bce5c28c654ae65cdba126707e5b1b8abc4f235c
|
|
4
|
+
data.tar.gz: 6912c79881f16f9c5f412e883c5be7491499063ec6b0b5455b79adfe0dbc10c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ceb2d841c44d496b1a9ceceb5908722c4e0dcd94481ca8b8ce85d70c081c33f2a054bc152d324e2e23177d948b03a57f3c4d26a1d9cfb4acef30ccc965d1150
|
|
7
|
+
data.tar.gz: afd8ef590130974128ac2031c0b32c41a817529ad35f7b72b12f6a20738be4b589490ea5f034efc7eef1af2b6d242a5525d7764a58b739a0d0d88d4f312ad039
|
data/README.md
CHANGED
|
@@ -11,7 +11,8 @@ A Solana RPC Client for Ruby. This gem provides a wrapper methods for Solana RPC
|
|
|
11
11
|
|
|
12
12
|
### Requirements
|
|
13
13
|
|
|
14
|
-
This gem requires Ruby 2.
|
|
14
|
+
This gem requires Ruby 2.7+ (as denoted in the `.ruby-version` file) and it has Rails 6.0+ on board. It MIGHT work with lower versions, but was not tested with them.
|
|
15
|
+
|
|
15
16
|
Add the following line to your Gemfile:
|
|
16
17
|
|
|
17
18
|
```ruby
|
data/solana_rpc_ruby.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.homepage = 'https://github.com/Block-Logic/solana-rpc-ruby'
|
|
13
13
|
spec.license = 'MIT'
|
|
14
14
|
spec.platform = Gem::Platform::RUBY
|
|
15
|
-
spec.required_ruby_version = '>= 2.
|
|
15
|
+
spec.required_ruby_version = '>= 2.7.5'
|
|
16
16
|
spec.files = Dir[
|
|
17
17
|
'README.md', 'LICENSE', 'CHANGELOG.md',
|
|
18
18
|
'lib/**/*.rb',
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solana_rpc_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Block Logic Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faye-websocket
|
|
@@ -249,14 +249,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
249
249
|
requirements:
|
|
250
250
|
- - ">="
|
|
251
251
|
- !ruby/object:Gem::Version
|
|
252
|
-
version: 2.
|
|
252
|
+
version: 2.7.5
|
|
253
253
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
254
254
|
requirements:
|
|
255
255
|
- - ">="
|
|
256
256
|
- !ruby/object:Gem::Version
|
|
257
257
|
version: '0'
|
|
258
258
|
requirements: []
|
|
259
|
-
rubygems_version: 3.
|
|
259
|
+
rubygems_version: 3.1.6
|
|
260
260
|
signing_key:
|
|
261
261
|
specification_version: 4
|
|
262
262
|
summary: Ruby wrapper for solana JSON RPC API.
|