ignite-client 0.1.2 → 0.2.0

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: 277a2a525c7245552178a032720625ba7a63c14d240209602fcbfa8cab118d97
4
- data.tar.gz: 648e9bdfa148eb1f5a45aa0f8b10a62a219c19933c6c03e0d22d84068856b25d
3
+ metadata.gz: c0f2e2c94dd64afd629126983ad380351e4767942843a28c4a3f15af6bbc6755
4
+ data.tar.gz: 2de384d855a732143eac79d52185893348bc74a7821c82c9f9c3c65fcd63199c
5
5
  SHA512:
6
- metadata.gz: 3bbbb1683b3871db216a48c340f40daaaf48cd7e12373315efa08a88476e2221d64e13140a13dccaf4b915bd3038f55b5ed1e0123598d842e6b2cb84f9003857
7
- data.tar.gz: dbd7de30343a7a771585af080f804c3f4f5f1c049504f3c174ace0fb39e725a2e14d95e3cb0a30359c3a1c13296ba07ca47323fa972bdd2246c6ee8410130728
6
+ metadata.gz: e80c50e7d5867fad7c167d193026e94ffe6e5cf92e13b7f1e514982f77d63e70ed6db59b9188299a0f98ef7d95a3710dc7726e03065c8ab538b65e2517a77a9e
7
+ data.tar.gz: b3e604e8fa394dfac72ac040700afc97858d03d1b91faf3c9c6f5c7c620554efdc4d033a87dd80fb6ce9e6af84a86815b34d37a41a531c2a727b7b1c0ca40a46
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.0 (2023-05-11)
2
+
3
+ - Dropped support for Ruby < 3
4
+
1
5
  ## 0.1.2 (2021-09-20)
2
6
 
3
7
  - Added connect timeout
data/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  Add this line to your application’s Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'ignite-client'
12
+ gem "ignite-client"
13
13
  ```
14
14
 
15
15
  ## Getting Started
@@ -95,7 +95,7 @@ Specify the host and port
95
95
  Ignite::Client.new(host: "localhost", port: 10800)
96
96
  ```
97
97
 
98
- Specify the connect timeout [unreleased]
98
+ Specify the connect timeout
99
99
 
100
100
  ```ruby
101
101
  Ignite::Client.new(connect_timeout: 3)
data/lib/ignite/client.rb CHANGED
@@ -1,4 +1,4 @@
1
- require "ignite"
1
+ require_relative "../ignite"
2
2
 
3
3
  module Ignite
4
4
  class Client
@@ -1,3 +1,3 @@
1
1
  module Ignite
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
data/lib/ignite.rb CHANGED
@@ -5,13 +5,13 @@ require "openssl"
5
5
  require "socket"
6
6
 
7
7
  # modules
8
- require "ignite/cache"
9
- require "ignite/op_codes"
10
- require "ignite/pack_formats"
11
- require "ignite/request"
12
- require "ignite/response"
13
- require "ignite/type_codes"
14
- require "ignite/version"
8
+ require_relative "ignite/cache"
9
+ require_relative "ignite/op_codes"
10
+ require_relative "ignite/pack_formats"
11
+ require_relative "ignite/request"
12
+ require_relative "ignite/response"
13
+ require_relative "ignite/type_codes"
14
+ require_relative "ignite/version"
15
15
 
16
16
  module Ignite
17
17
  class Error < StandardError; end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ignite-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-21 00:00:00.000000000 Z
11
+ date: 2023-05-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: andrew@ankane.org
@@ -40,14 +40,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- version: '2.6'
43
+ version: '3'
44
44
  required_rubygems_version: !ruby/object:Gem::Requirement
45
45
  requirements:
46
46
  - - ">="
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  requirements: []
50
- rubygems_version: 3.2.22
50
+ rubygems_version: 3.4.10
51
51
  signing_key:
52
52
  specification_version: 4
53
53
  summary: Ruby client for Apache Ignite