nuva 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/nuva/Code_pb.rb +3 -3
- data/lib/nuva/Disease_pb.rb +6 -6
- data/lib/nuva/InjectionMethod_pb.rb +1 -1
- data/lib/nuva/NuvaDatabase_pb.rb +4 -4
- data/lib/nuva/Vaccine_pb.rb +9 -9
- data/lib/nuva/Valence_pb.rb +8 -8
- data/lib/nuva/VersionInfo_pb.rb +4 -4
- data/lib/nuva/version.rb +1 -1
- data/nuva.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91add977fc84455f8034b67572e407e66fc72883f2bb4222a1110d075f8f5fa6
|
4
|
+
data.tar.gz: 613fcbda7fe1c0700c966f86d76795629325919ff47e36b14a3ff5c40e74ff35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1ad7b17c479dd8721b145407b2680389179d397873560b511f9014ea9a113beef0896ffc84865e5ced911f1b91afa06b0defa7f5d971b8e2ea6594e941c1882
|
7
|
+
data.tar.gz: a657ba25891700583e6c219bef5677977c42a860f1d6e64c6b96bc08ce6aae8b0e6f517733d4f9a64503489d20424f08bfabb9b5cad9bce4c611e939e9eded51
|
data/lib/nuva/Code_pb.rb
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
-
add_file("Code.proto", :syntax => :
|
7
|
+
add_file("Code.proto", :syntax => :proto3) do
|
8
8
|
add_message "nuva.Code" do
|
9
|
-
|
10
|
-
|
9
|
+
optional :nomenclature, :string, 1
|
10
|
+
optional :value, :string, 2
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
data/lib/nuva/Disease_pb.rb
CHANGED
@@ -7,14 +7,14 @@ require 'google/protobuf/timestamp_pb'
|
|
7
7
|
require_relative 'Code_pb'
|
8
8
|
|
9
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
-
add_file("Disease.proto", :syntax => :
|
10
|
+
add_file("Disease.proto", :syntax => :proto3) do
|
11
11
|
add_message "nuva.Disease" do
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
optional :id, :string, 1
|
13
|
+
optional :name, :string, 2
|
14
|
+
optional :code, :uint32, 3
|
15
15
|
repeated :codes, :message, 4, "nuva.Code"
|
16
|
-
|
17
|
-
|
16
|
+
optional :vaccinable, :bool, 5
|
17
|
+
optional :screenable, :bool, 6
|
18
18
|
repeated :valence_ids, :string, 7
|
19
19
|
optional :created_at, :message, 16, "google.protobuf.Timestamp"
|
20
20
|
optional :updated_at, :message, 17, "google.protobuf.Timestamp"
|
@@ -4,7 +4,7 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
-
add_file("InjectionMethod.proto", :syntax => :
|
7
|
+
add_file("InjectionMethod.proto", :syntax => :proto3) do
|
8
8
|
add_enum "nuva.InjectionMethod" do
|
9
9
|
value :UnspecifiedInjectionMethod, 0
|
10
10
|
value :Intramuscular, 1
|
data/lib/nuva/NuvaDatabase_pb.rb
CHANGED
@@ -10,11 +10,11 @@ require_relative 'Disease_pb'
|
|
10
10
|
require_relative 'Valence_pb'
|
11
11
|
|
12
12
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
13
|
-
add_file("NuvaDatabase.proto", :syntax => :
|
13
|
+
add_file("NuvaDatabase.proto", :syntax => :proto3) do
|
14
14
|
add_message "nuva.NuvaDatabase" do
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
optional :version, :message, 1, "nuva.VersionInfo"
|
16
|
+
optional :generated_at, :message, 2, "google.protobuf.Timestamp"
|
17
|
+
optional :locale, :string, 3
|
18
18
|
repeated :vaccines, :message, 4, "nuva.Vaccine"
|
19
19
|
repeated :diseases, :message, 5, "nuva.Disease"
|
20
20
|
repeated :valences, :message, 6, "nuva.Valence"
|
data/lib/nuva/Vaccine_pb.rb
CHANGED
@@ -8,21 +8,21 @@ require_relative 'InjectionMethod_pb'
|
|
8
8
|
require_relative 'Code_pb'
|
9
9
|
|
10
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
|
-
add_file("Vaccine.proto", :syntax => :
|
11
|
+
add_file("Vaccine.proto", :syntax => :proto3) do
|
12
12
|
add_message "nuva.Vaccine" do
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
13
|
+
optional :id, :string, 1
|
14
|
+
optional :name, :string, 2
|
15
|
+
optional :short_description, :string, 3
|
16
|
+
optional :description, :string, 4
|
17
17
|
repeated :injection_methods, :enum, 5, "nuva.InjectionMethod"
|
18
|
-
|
18
|
+
optional :code, :uint32, 6
|
19
19
|
repeated :codes, :message, 7, "nuva.Code"
|
20
20
|
repeated :valence_ids, :string, 8
|
21
21
|
repeated :other_names, :string, 9
|
22
|
-
|
22
|
+
optional :generic, :bool, 10
|
23
23
|
optional :replaced_by_id, :string, 11
|
24
|
-
|
25
|
-
|
24
|
+
optional :created_at, :message, 16, "google.protobuf.Timestamp"
|
25
|
+
optional :updated_at, :message, 17, "google.protobuf.Timestamp"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
data/lib/nuva/Valence_pb.rb
CHANGED
@@ -6,19 +6,19 @@ require 'google/protobuf'
|
|
6
6
|
require 'google/protobuf/timestamp_pb'
|
7
7
|
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
-
add_file("Valence.proto", :syntax => :
|
9
|
+
add_file("Valence.proto", :syntax => :proto3) do
|
10
10
|
add_message "nuva.Valence" do
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
11
|
+
optional :id, :string, 1
|
12
|
+
optional :parent_id, :string, 2
|
13
|
+
optional :code, :uint32, 3
|
14
|
+
optional :name, :string, 4
|
15
|
+
optional :abbreviation, :string, 5
|
16
16
|
optional :translated_abbreviation, :string, 6
|
17
17
|
repeated :disease_ids, :string, 7
|
18
18
|
repeated :vaccine_ids, :string, 8
|
19
19
|
optional :antigene_type, :string, 9
|
20
|
-
|
21
|
-
|
20
|
+
optional :created_at, :message, 16, "google.protobuf.Timestamp"
|
21
|
+
optional :updated_at, :message, 17, "google.protobuf.Timestamp"
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
data/lib/nuva/VersionInfo_pb.rb
CHANGED
@@ -4,11 +4,11 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
-
add_file("VersionInfo.proto", :syntax => :
|
7
|
+
add_file("VersionInfo.proto", :syntax => :proto3) do
|
8
8
|
add_message "nuva.VersionInfo" do
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
optional :major, :uint32, 1
|
10
|
+
optional :minor, :uint32, 2
|
11
|
+
optional :patch, :uint32, 3
|
12
12
|
end
|
13
13
|
end
|
14
14
|
end
|
data/lib/nuva/version.rb
CHANGED
data/nuva.gemspec
CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
30
30
|
spec.require_paths = ["lib"]
|
31
31
|
|
32
|
-
spec.add_dependency 'google-protobuf', '~> 3.25', '>= 3.25.
|
32
|
+
spec.add_dependency 'google-protobuf', '~> 3.25', '>= 3.25.5'
|
33
33
|
spec.add_dependency 'fuzzy_match', '~> 2.1'
|
34
34
|
|
35
35
|
# For more information and examples about making a new gem, check out our
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nuva
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Syadem
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3.25'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.25.
|
22
|
+
version: 3.25.5
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3.25'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.25.
|
32
|
+
version: 3.25.5
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: fuzzy_match
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|