ruby-hl7 1.2.1 → 1.2.2

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
  SHA1:
3
- metadata.gz: 005071a850becbb69bd856337698d824eb7514a7
4
- data.tar.gz: fe3b1cd645846d3eae704f2738ea9e4372d06877
3
+ metadata.gz: 8b36535802bbf6b5f122e2322a668d970429ee65
4
+ data.tar.gz: db078ec7a69b6b049b2097a0422ce2e611dbd06f
5
5
  SHA512:
6
- metadata.gz: 8dbc973a6f883acd2f59c626276ccae85934cf8a614fcd8a974c888191ad3ab9888ff8f0cdd8b6c2db91d99a7c167abe4661c71188afc3bbc745c6b2355ddffb
7
- data.tar.gz: 71769e021da5a7f72f5eec461e340830d3573b26fbba1ee91fea1e89269c69cb0b07bfe11be09cb04ee300785cda671d784eede5eefd5ca3221b6b1f07791c68
6
+ metadata.gz: 4aa4d504557aed652061c0f7c0a1f63302f6d43337c29158f1b67ab8902ec3afde62b7d927dbbdaa2f1982b0aae3cc6700bb9d040368cef5da1f7a0c32a1269e
7
+ data.tar.gz: 1d284a74ceb3b7d6bab0d05e2036b7bf7d2b374d211efdba1122eae86b654ac4a96f92e0fd9247b0978075634bb256d3add1e18cf0abc97d68bdf31bdd0710c3
@@ -21,7 +21,7 @@ require 'stringio'
21
21
  require 'date'
22
22
 
23
23
  module HL7 # :nodoc:
24
- VERSION = '1.2.1'
24
+ VERSION = '1.2.2'
25
25
  def self.ParserConfig
26
26
  @parser_cfg ||= { :empty_segment_is_error => true }
27
27
  end
@@ -0,0 +1,15 @@
1
+ class HL7::Message::Segment::AIL < HL7::Message::Segment
2
+ weight 0
3
+ add_field :set_id
4
+ add_field :segment_action_code
5
+ add_field :location_resource_id
6
+ add_field :location_type
7
+ add_field :location_group
8
+ add_field :start_date_time
9
+ add_field :start_date_time_offset
10
+ add_field :start_date_time_offset_units
11
+ add_field :duration
12
+ add_field :duration_units
13
+ add_field :allow_substitution_code
14
+ add_field :filler_status_code
15
+ end
@@ -0,0 +1,15 @@
1
+ class HL7::Message::Segment::AIP < HL7::Message::Segment
2
+ weight 0
3
+ add_field :set_id
4
+ add_field :segment_action_code
5
+ add_field :personnel_resource_id
6
+ add_field :resource_role
7
+ add_field :resource_group
8
+ add_field :start_date_time
9
+ add_field :start_date_time_offset
10
+ add_field :start_date_time_offset_units
11
+ add_field :duration
12
+ add_field :duration_units
13
+ add_field :allow_substitution_code
14
+ add_field :filler_status_code
15
+ end
@@ -0,0 +1,28 @@
1
+ class HL7::Message::Segment::SCH < HL7::Message::Segment
2
+ weight 0
3
+ add_field :placer_appointment_id
4
+ add_field :filler_appointment_id
5
+ add_field :occurance_number
6
+ add_field :placer_group_number
7
+ add_field :schedule_id
8
+ add_field :event_reason
9
+ add_field :appointment_reason
10
+ add_field :appointment_type
11
+ add_field :appointment_duration
12
+ add_field :appointment_duration_units
13
+ add_field :appointment_timing_quantity
14
+ add_field :placer_contact_person
15
+ add_field :placer_contact_phone_number
16
+ add_field :placer_contact_address
17
+ add_field :placer_contact_location
18
+ add_field :filler_contact_person
19
+ add_field :filler_contact_phone_number
20
+ add_field :filler_contact_address
21
+ add_field :filler_contact_location
22
+ add_field :entered_by_person
23
+ add_field :entered_by_phone_number
24
+ add_field :entered_by_location
25
+ add_field :parent_placer_appointment_id
26
+ add_field :parent_filler_appointment_id
27
+ add_field :filler_status_code
28
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-hl7
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Guzman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-09 00:00:00.000000000 Z
11
+ date: 2018-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -31,7 +31,7 @@ dependencies:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: 2.0.4
34
- type: :runtime
34
+ type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
@@ -58,6 +58,8 @@ files:
58
58
  - lib/segment_fields.rb
59
59
  - lib/segment_generator.rb
60
60
  - lib/segment_list_storage.rb
61
+ - lib/segments/ail.rb
62
+ - lib/segments/aip.rb
61
63
  - lib/segments/dg1.rb
62
64
  - lib/segments/err.rb
63
65
  - lib/segments/evn.rb
@@ -80,6 +82,7 @@ files:
80
82
  - lib/segments/qrd.rb
81
83
  - lib/segments/qrf.rb
82
84
  - lib/segments/rf1.rb
85
+ - lib/segments/sch.rb
83
86
  - lib/segments/sft.rb
84
87
  - lib/segments/spm.rb
85
88
  - lib/segments/zcf.rb