primary_connect_proto 0.0.4 → 0.0.5

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: a0d2d165b638c32bf6903aad25e48d9bfb2b6303d37a5fab706482a63ab7333f
4
- data.tar.gz: c6bd5efeead426f97c95784bd4cfe1f134de0dc94d96980afc35d27e5fab1700
3
+ metadata.gz: f60732df2bb7faea8aebbc205c1950037f2a79c6a2ba4f78f5a1ba13d1ca1781
4
+ data.tar.gz: 2c026a2465ee3f16cba4e292899633d2bb2546669fd66a1cc2c675de2d0bfdb0
5
5
  SHA512:
6
- metadata.gz: 9f8d5ab04d3d29a2e791884cb8dd0f53006b966aa9f3ff009386a172211bfbf0eca80b7880f2d4167336d4acffcf56bc104483d65db7a83f56285452e52b5df9
7
- data.tar.gz: c55a87807549b1209bdcc8539d4e4e4ff057a8de3c2a225cd4b855710dd5f9435dcbac85e05c7246da30b31c01525b05555c3a086f74142b3ca3787061058723
6
+ metadata.gz: 11097e41d2cf1f59284641004d6b1972669252f36ba8b9ef272c119b2d92c6af5bbdd2877166de461079e78c2732cfbb7635f8c08c51968a14091b55ab7a9ae4
7
+ data.tar.gz: fd5cf73dbaa3b7cfb9a265ab65f2d0d36e48de4d116ea01c1cc4cc8a9662b821ba31ff6da2d8c4de4941d97799d5a88437dd431ac6dc2c3b3f0e7131b438a63c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- primary_connect_proto (0.0.4)
4
+ primary_connect_proto (0.0.5)
5
5
  google-protobuf (~> 4.0.0.rc1)
6
6
 
7
7
  GEM
@@ -10,6 +10,7 @@ GEM
10
10
  ast (2.4.2)
11
11
  byebug (11.1.3)
12
12
  coderay (1.1.3)
13
+ diff-lcs (1.4.4)
13
14
  google-protobuf (4.0.0.rc.2-universal-darwin)
14
15
  jaro_winkler (1.5.4)
15
16
  method_source (1.0.0)
@@ -25,6 +26,19 @@ GEM
25
26
  psych (4.0.2)
26
27
  rainbow (3.0.0)
27
28
  rake (13.0.6)
29
+ rspec (3.10.0)
30
+ rspec-core (~> 3.10.0)
31
+ rspec-expectations (~> 3.10.0)
32
+ rspec-mocks (~> 3.10.0)
33
+ rspec-core (3.10.1)
34
+ rspec-support (~> 3.10.0)
35
+ rspec-expectations (3.10.1)
36
+ diff-lcs (>= 1.2.0, < 2.0)
37
+ rspec-support (~> 3.10.0)
38
+ rspec-mocks (3.10.2)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.10.0)
41
+ rspec-support (3.10.3)
28
42
  rubocop (0.66.0)
29
43
  jaro_winkler (~> 1.5.1)
30
44
  parallel (~> 1.10)
@@ -40,9 +54,11 @@ PLATFORMS
40
54
  ruby
41
55
 
42
56
  DEPENDENCIES
57
+ bundler (~> 1.17)
43
58
  primary_connect_proto!
44
59
  pry-byebug
45
60
  rake (~> 13.0.1)
61
+ rspec (~> 3.6, >= 3.6.0)
46
62
  rubocop (~> 0.66.0)
47
63
 
48
64
  BUNDLED WITH
@@ -1,11 +1,14 @@
1
1
  # -*- encoding: utf-8 -*
2
2
 
3
- $:.push File.expand_path("../lib", __FILE__)
3
+ lib = File.expand_path("../lib", __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
 
5
6
  Gem::Specification.new do |s|
6
7
  s.name = "primary_connect_proto"
7
- s.version = "0.0.4"
8
+ s.version = "0.0.5"
8
9
  s.authors = ["Primary.Health"]
10
+ s.email = ["sam@primary.health"]
11
+
9
12
  s.platform = Gem::Platform::RUBY
10
13
  s.homepage = "https://github.com/PrimaryDotHealth/connect-proto"
11
14
  s.summary = "Primary Connect Protobuf"
@@ -17,4 +20,8 @@ Gem::Specification.new do |s|
17
20
  s.executables = []
18
21
 
19
22
  s.add_runtime_dependency 'google-protobuf', '~> 4.0.0.rc1'
23
+
24
+ s.add_development_dependency "bundler", "~> 1.17"
25
+ s.add_development_dependency "rake", "~> 10.0"
26
+ s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
20
27
  end
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- $LOAD_PATH << './lib/connect_proto/build'
4
-
5
3
  require 'address_pb'
6
4
  require 'coded_value_pb'
7
5
  require 'demographics_pb'
@@ -18,8 +16,6 @@ require 'results_pb'
18
16
  require 'specimen_pb'
19
17
  require 'visit_pb'
20
18
 
21
- $LOAD_PATH << './lib/extensions'
22
-
23
19
  require 'full_nameable'
24
20
  require 'phone_numberable'
25
21
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: primary_connect_proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Primary.Health
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-19 00:00:00.000000000 Z
11
+ date: 2021-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -24,8 +24,57 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.0.0.rc1
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.17'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.17'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 3.6.0
62
+ - - "~>"
63
+ - !ruby/object:Gem::Version
64
+ version: '3.6'
65
+ type: :development
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: 3.6.0
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '3.6'
27
75
  description: Protobufs for Diagnostic Ordering and Resulting
28
- email:
76
+ email:
77
+ - sam@primary.health
29
78
  executables: []
30
79
  extensions: []
31
80
  extra_rdoc_files: []
@@ -34,7 +83,6 @@ files:
34
83
  - Gemfile.lock
35
84
  - README.md
36
85
  - connect_proto.gemspec
37
- - lib/connect_proto.rb
38
86
  - lib/connect_proto/build/address_pb.rb
39
87
  - lib/connect_proto/build/coded_value_pb.rb
40
88
  - lib/connect_proto/build/demographics_pb.rb
@@ -67,7 +115,7 @@ files:
67
115
  - lib/connect_proto/src/visit.proto
68
116
  - lib/extensions/full_nameable.rb
69
117
  - lib/extensions/phone_numberable.rb
70
- - primary_connect_proto-0.0.3.gem
118
+ - lib/primary_connect_proto.rb
71
119
  - spec/protobuf/demographics_spec.rb
72
120
  - spec/protobuf/name_spec.rb
73
121
  - spec/protobuf/order/order/facility_spec.rb
Binary file