route_guide 0.1.5 → 0.1.8

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: 306b79419a33139769d321a1a4221408f633eac26d9d2ebcbae7d53efdfde67a
4
- data.tar.gz: 21d43d8d4317bcc007711a883ed8d8ba7f94b7a0583455dfa40db4b4e5573ec1
3
+ metadata.gz: 7ffd5c6b57520dcffd2aa8adcc7b7d0d5581128514b9b1d3fd5d028bfcb29230
4
+ data.tar.gz: 231bb3d7def255519175856a18b3f0f20b67422d20c463c9c565a5440d7857d5
5
5
  SHA512:
6
- metadata.gz: 6fe81484e7005e9ffb9d6351a7e07a7474478d8ef06c2d3c66ef1ff1db72bf18d87116eea778377f1acb1b550d5f7a6235b2d3b42eed81b14b7d3bcb4ae8d3c4
7
- data.tar.gz: 54914673ae41f39bc028359ef28723224b5f63b7a9520ef1d347671142378c63b56e87c9e51fd7fbe8d0d3ab96f3b8ef12cd25db6a205d63b5b413553389710b
6
+ metadata.gz: 7c7f53c696fcb5ea3db3cb722ebd8c5945157939059edf36d1a47b9469a1c97406012a421fd24f30a74203217b54fa9d9b27fdde2e9962e78ac71100f4aad06e
7
+ data.tar.gz: 234e33153c34d7d4ad4d982f296b2c7a1ffc7fbfb7f662e50e2d6cb8c08b68a627ca9946b7c923ed00bc60262803db0d44b7cfda7eb231175112da0b386e9ebd
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.0.2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- route_guide (0.1.5)
4
+ route_guide (0.1.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -64,4 +64,4 @@ DEPENDENCIES
64
64
  rubocop (~> 1.21)
65
65
 
66
66
  BUNDLED WITH
67
- 2.3.15
67
+ 2.3.8
data/README.md CHANGED
@@ -75,7 +75,7 @@ RouteGuideServer.start
75
75
  3. Run server with;
76
76
 
77
77
  ```sh
78
- bundle exec server.rb
78
+ ruby server.rb
79
79
  ```
80
80
 
81
81
  ### Client side
@@ -108,7 +108,7 @@ test_single_call
108
108
  2. Then run the client in a separate terminal. Run client with;
109
109
 
110
110
  ```sh
111
- bundle exec client.rb
111
+ ruby client.rb
112
112
  ```
113
113
 
114
114
  ## Development
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RouteGuide
4
- VERSION = "0.1.5"
4
+ VERSION = "0.1.8"
5
5
  end
data/route_guide.gemspec CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = "Gem that demonstrates how to use gRPC in ruby."
13
13
  spec.homepage = "https://github.com/Sylvance/route_guide"
14
14
  spec.license = "MIT"
15
- spec.required_ruby_version = ">= 2.6.0"
15
+ spec.required_ruby_version = ">= 3.0.2"
16
16
 
17
17
  spec.metadata["allowed_push_host"] = "https://rubygems.org"
18
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: route_guide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - sylvance_theone
@@ -19,6 +19,7 @@ extra_rdoc_files: []
19
19
  files:
20
20
  - ".rspec"
21
21
  - ".rubocop.yml"
22
+ - ".ruby-version"
22
23
  - ".vscode/configurationCache.log"
23
24
  - ".vscode/dryrun.log"
24
25
  - ".vscode/settings.json"
@@ -57,14 +58,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
57
58
  requirements:
58
59
  - - ">="
59
60
  - !ruby/object:Gem::Version
60
- version: 2.6.0
61
+ version: 3.0.2
61
62
  required_rubygems_version: !ruby/object:Gem::Requirement
62
63
  requirements:
63
64
  - - ">="
64
65
  - !ruby/object:Gem::Version
65
66
  version: '0'
66
67
  requirements: []
67
- rubygems_version: 3.1.4
68
+ rubygems_version: 3.2.22
68
69
  signing_key:
69
70
  specification_version: 4
70
71
  summary: Gem that demonstrates how to use gRPC in ruby.