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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 445e4852f291cb7e6d417e3a3277905c7c2935ed40ec9cdca3e1d5f2f599f8ab
4
- data.tar.gz: 36f27011567ebd56e0f0b86db2fa93c04e66c55351d0307a014b432a3988f8e5
3
+ metadata.gz: c2de89a051209d77ca5d7ee6bce5c28c654ae65cdba126707e5b1b8abc4f235c
4
+ data.tar.gz: 6912c79881f16f9c5f412e883c5be7491499063ec6b0b5455b79adfe0dbc10c8
5
5
  SHA512:
6
- metadata.gz: 9be80c9efcff01f3324cee479e4262cafd9ca8cc43dfc7d19e6bf537f336428a5bacf124b4d920955c364638fd355e9bdbe33bf425bc458a2d37025bbfbb794e
7
- data.tar.gz: 86e7db1d6cdf6b2a5b208b7b5b8fdae6766fbeb5e919ff8dfd23c845c9c8d5105827f4609d10ad01581f0049a1dfbd1c9e9ded0937f621ad7912856837397da2
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.6+ and h Rails 6.0+. It MIGHT work with lower versions, but was not tested with them.
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolanaRpcRuby
4
- VERSION = '1.2.0'
4
+ VERSION = '1.3.0'
5
5
  end
@@ -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.6.5'
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.2.0
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: 2022-01-13 00:00:00.000000000 Z
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.6.5
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.2.2
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.