igsr5-portfolio-proto 0.0.6 → 0.0.9

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: a8c78067306c50e93250b9f7483f3a8e56f0453eca42aaca01eca1f0291d8341
4
- data.tar.gz: 1b72ed642472868f6b0d13d6340556e1856a9ded1a6bf2580b69490c21266d30
3
+ metadata.gz: 6f73e84a79edc2f0f4e1a6403b4ccacafaa61b39c50d930cdd96359f1fb49e05
4
+ data.tar.gz: 3f8c4b73475ab291ec4fb40ff85e0a37d166c48025238e1e87f093121d936ec9
5
5
  SHA512:
6
- metadata.gz: c0f43979c4db80166b6e882f6145c48dfc4d6e1768c04ae303720b4c8778b523256189f56468bba51f831211fc7991fa290e5be7ff18997b88dddedf16a232d0
7
- data.tar.gz: a79030dacef3dcce7eb80f2984b8da539b9864109fb1b01ff465892dd993a0b3f0838529758730032c513d5359c8313b6ba79da5869f7a087c2bdab179f10eb9
6
+ metadata.gz: 87caa584490d0c05c61d41c1499626b00e8eedf4f119125dc6c98fa58bcf223ba58b2872889cc59a48c174db0b7deb2d2aac45751961cece1e74cf24712474d4
7
+ data.tar.gz: 95304fdb5d3a7dcb924de62eb90501989467df356e95e7f21bc522fc7474274ac9f45ed33cf08d5b64c5d2873f69852ff11e8c07140e60f0fead33690b4e8a78
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Portfolio
4
- VERSION = "0.0.6"
4
+ VERSION = "0.0.9"
5
5
  end
@@ -0,0 +1,46 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: proto/blogs/blog.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/timestamp_pb'
7
+
8
+ Google::Protobuf::DescriptorPool.generated_pool.build do
9
+ add_file("proto/blogs/blog.proto", :syntax => :proto3) do
10
+ add_message "blogs.Blog" do
11
+ optional :id, :string, 1
12
+ optional :title, :string, 2
13
+ optional :posted_at, :message, 3, "google.protobuf.Timestamp"
14
+ optional :site_url, :string, 4
15
+ optional :thumbnail_url, :string, 5
16
+ optional :service_name, :string, 6
17
+ end
18
+ add_message "blogs.BlogFromRSSItem" do
19
+ optional :id, :string, 1
20
+ optional :title, :string, 2
21
+ optional :posted_at, :message, 3, "google.protobuf.Timestamp"
22
+ optional :site_url, :string, 4
23
+ optional :thumbnail_url, :string, 5
24
+ optional :service_name, :string, 6
25
+ end
26
+ add_message "blogs.BlogFromManualItem" do
27
+ optional :id, :string, 1
28
+ optional :title, :string, 2
29
+ optional :posted_at, :message, 3, "google.protobuf.Timestamp"
30
+ optional :site_url, :string, 4
31
+ optional :thumbnail_url, :string, 5
32
+ optional :service_name, :string, 6
33
+ end
34
+ add_message "blogs.RSSFeed" do
35
+ optional :id, :string, 1
36
+ optional :url, :string, 2
37
+ end
38
+ end
39
+ end
40
+
41
+ module BlogsPb
42
+ Blog = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("blogs.Blog").msgclass
43
+ BlogFromRSSItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("blogs.BlogFromRSSItem").msgclass
44
+ BlogFromManualItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("blogs.BlogFromManualItem").msgclass
45
+ RSSFeed = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("blogs.RSSFeed").msgclass
46
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: igsr5-portfolio-proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - igsr5
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-17 00:00:00.000000000 Z
11
+ date: 2022-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -54,7 +54,7 @@ files:
54
54
  - bin/setup
55
55
  - lib/portfolio.rb
56
56
  - lib/portfolio/version.rb
57
- - lib/proto/user_pb.rb
57
+ - lib/proto/blogs/blog_pb.rb
58
58
  - sig/protosum2.rbs
59
59
  homepage: https://github.com/igsr5/portfolio
60
60
  licenses: []
data/lib/proto/user_pb.rb DELETED
@@ -1,21 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: proto/user.proto
3
-
4
- require 'google/protobuf'
5
-
6
- Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_file("proto/user.proto", :syntax => :proto3) do
8
- add_message "userpb.User" do
9
- optional :name, :string, 1
10
- optional :email, :string, 2
11
- optional :age, :int64, 3
12
- optional :type, :int64, 4
13
- end
14
- end
15
- end
16
-
17
- module Portfolio
18
- module UserPb
19
- User = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("userpb.User").msgclass
20
- end
21
- end