grpc_server_template 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +6 -2
- data/Gemfile.lock +28 -1
- data/README.md +2 -4
- data/exe/rpc +7 -0
- data/lib/grpc_server_template/cli.rb +14 -0
- data/lib/grpc_server_template/version.rb +1 -1
- data/lib/grpc_server_template.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b23eaf6091f23b8347992cfd008b345fb22291132c2e16a932f6e5541b7768c9
|
4
|
+
data.tar.gz: 5f709ab979016084834eaff5bb405e4ab8a29bd22e24081808da7d4d8a79a22a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d2c943947594ed46aeaede76be1853a43ede5f3fb866b8b795d32be8ba83e9ef9a92554a08503cec580e99812c8d08281bc1c5732f82739227cbf5f0145f21d
|
7
|
+
data.tar.gz: c70166ee858a876e24b3f9138755191b785d39c1a53a6a1d92320eedf8cf024f03b7a52e28f6401f0599b439378330a66a863292f364f51803fbcb24f9de0125
|
data/Gemfile
CHANGED
@@ -5,8 +5,12 @@ source "https://rubygems.org"
|
|
5
5
|
# Specify your gem's dependencies in grpc_server_template.gemspec
|
6
6
|
gemspec
|
7
7
|
|
8
|
+
gem "erb", "~> 4.0"
|
9
|
+
gem "fileutils", "~> 1.7"
|
10
|
+
gem "grpc", "~> 1.50"
|
11
|
+
gem "grpc-tools", "~> 1.50"
|
12
|
+
gem "pry", "~> 0.14.2"
|
8
13
|
gem "rake", "~> 13.0"
|
9
|
-
|
10
14
|
gem "rspec", "~> 3.0"
|
11
|
-
|
12
15
|
gem "rubocop", "~> 1.21"
|
16
|
+
gem "thor", "~> 1.2"
|
data/Gemfile.lock
CHANGED
@@ -1,17 +1,37 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
grpc_server_template (0.1.
|
4
|
+
grpc_server_template (0.1.1)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
9
|
ast (2.4.2)
|
10
|
+
cgi (0.3.6)
|
11
|
+
coderay (1.1.3)
|
10
12
|
diff-lcs (1.5.0)
|
13
|
+
erb (4.0.2)
|
14
|
+
cgi (>= 0.3.3)
|
15
|
+
fileutils (1.7.0)
|
16
|
+
google-protobuf (3.21.12)
|
17
|
+
google-protobuf (3.21.12-x86_64-linux)
|
18
|
+
googleapis-common-protos-types (1.5.0)
|
19
|
+
google-protobuf (~> 3.14)
|
20
|
+
grpc (1.50.0)
|
21
|
+
google-protobuf (~> 3.21)
|
22
|
+
googleapis-common-protos-types (~> 1.0)
|
23
|
+
grpc (1.50.0-x86_64-linux)
|
24
|
+
google-protobuf (~> 3.21)
|
25
|
+
googleapis-common-protos-types (~> 1.0)
|
26
|
+
grpc-tools (1.50.0)
|
11
27
|
json (2.6.3)
|
28
|
+
method_source (1.0.0)
|
12
29
|
parallel (1.22.1)
|
13
30
|
parser (3.2.0.0)
|
14
31
|
ast (~> 2.4.1)
|
32
|
+
pry (0.14.2)
|
33
|
+
coderay (~> 1.1)
|
34
|
+
method_source (~> 1.0)
|
15
35
|
rainbow (3.1.1)
|
16
36
|
rake (13.0.6)
|
17
37
|
regexp_parser (2.6.1)
|
@@ -42,6 +62,7 @@ GEM
|
|
42
62
|
rubocop-ast (1.24.1)
|
43
63
|
parser (>= 3.1.1.0)
|
44
64
|
ruby-progressbar (1.11.0)
|
65
|
+
thor (1.2.1)
|
45
66
|
unicode-display_width (2.4.2)
|
46
67
|
|
47
68
|
PLATFORMS
|
@@ -50,10 +71,16 @@ PLATFORMS
|
|
50
71
|
x86_64-linux
|
51
72
|
|
52
73
|
DEPENDENCIES
|
74
|
+
erb (~> 4.0)
|
75
|
+
fileutils (~> 1.7)
|
76
|
+
grpc (~> 1.50)
|
77
|
+
grpc-tools (~> 1.50)
|
53
78
|
grpc_server_template!
|
79
|
+
pry (~> 0.14.2)
|
54
80
|
rake (~> 13.0)
|
55
81
|
rspec (~> 3.0)
|
56
82
|
rubocop (~> 1.21)
|
83
|
+
thor (~> 1.2)
|
57
84
|
|
58
85
|
BUNDLED WITH
|
59
86
|
2.3.15
|
data/README.md
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/grpc_server_template`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
4
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
|
-
|
7
5
|
## Installation
|
8
6
|
|
9
7
|
Install the gem and add to the application's Gemfile by executing:
|
@@ -26,8 +24,8 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
26
24
|
|
27
25
|
## Contributing
|
28
26
|
|
29
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
27
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Sylvance/grpc_server_template. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/Sylvance/grpc_server_template/blob/main/CODE_OF_CONDUCT.md).
|
30
28
|
|
31
29
|
## Code of Conduct
|
32
30
|
|
33
|
-
Everyone interacting in the GrpcServerTemplate project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
31
|
+
Everyone interacting in the GrpcServerTemplate project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/Sylvance/grpc_server_template/blob/main/CODE_OF_CONDUCT.md).
|
data/exe/rpc
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "thor"
|
4
|
+
require "fileutils"
|
5
|
+
require "erb"
|
6
|
+
|
7
|
+
module GrpcServerTemplate
|
8
|
+
class Cli < Thor
|
9
|
+
desc "create PROJECT_NAME", "Creates a new gRPC Ruby server project with the given name"
|
10
|
+
def create(project_name)
|
11
|
+
system("echo 'Hello world #{project_name}'")
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
data/lib/grpc_server_template.rb
CHANGED
metadata
CHANGED
@@ -1,19 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc_server_template
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sylvance
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A template for the ruby grpc server.
|
14
14
|
email:
|
15
15
|
- kerandisylvance@gmail.com
|
16
|
-
executables:
|
16
|
+
executables:
|
17
|
+
- rpc
|
17
18
|
extensions: []
|
18
19
|
extra_rdoc_files: []
|
19
20
|
files:
|
@@ -25,8 +26,10 @@ files:
|
|
25
26
|
- Gemfile.lock
|
26
27
|
- README.md
|
27
28
|
- Rakefile
|
29
|
+
- exe/rpc
|
28
30
|
- grpc_server_template.gemspec
|
29
31
|
- lib/grpc_server_template.rb
|
32
|
+
- lib/grpc_server_template/cli.rb
|
30
33
|
- lib/grpc_server_template/version.rb
|
31
34
|
- sig/grpc_server_template.rbs
|
32
35
|
homepage: https://github.com/Sylvance/grpc_server_template/blob/main/README.md
|