health_seven 0.0.1 → 0.0.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.
data/health_seven.gemspec CHANGED
@@ -1,5 +1,5 @@
1
1
  # Version numbering: http://wiki.github.com/sandal/prawn/development-roadmap
2
- HEALTH_SEVEN_VERSION = "0.0.1"
2
+ HEALTH_SEVEN_VERSION = "0.0.2"
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = "health_seven"
@@ -16,7 +16,6 @@ Gem::Specification.new do |spec|
16
16
  spec.authors = ["Nikolay Ryzhikov", "Dmitry Rybakov"]
17
17
  spec.email = ["niquola@gmail.com"]
18
18
  spec.add_dependency('treetop')
19
- spec.add_dependency('ttfunk', '~>1.0.0')
20
19
  spec.description = 'Ruby library for HL7 2.x'
21
20
  spec.post_install_message = ''
22
21
  spec.homepage = 'https://github.com/hospital-systems/health_seven'
@@ -84,11 +84,11 @@ module HealthSeven
84
84
  end
85
85
 
86
86
  rule delim
87
- "\\r"
87
+ "#{13.chr}"
88
88
  end
89
89
 
90
90
  rule not_delim
91
- [^"\\r"]
91
+ [^#{13.chr}]
92
92
  end
93
93
 
94
94
  rule payload
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: health_seven
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nikolay Ryzhikov
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-12-18 00:00:00.000000000 Z
13
+ date: 2013-01-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  type: :runtime
@@ -28,22 +28,6 @@ dependencies:
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0'
30
30
  name: treetop
31
- - !ruby/object:Gem::Dependency
32
- type: :runtime
33
- requirement: !ruby/object:Gem::Requirement
34
- none: false
35
- requirements:
36
- - - ~>
37
- - !ruby/object:Gem::Version
38
- version: 1.0.0
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: 1.0.0
46
- name: ttfunk
47
31
  description: Ruby library for HL7 2.x
48
32
  email:
49
33
  - niquola@gmail.com
@@ -51,17 +35,17 @@ executables: []
51
35
  extensions: []
52
36
  extra_rdoc_files: []
53
37
  files:
54
- - lib/health_seven.rb
55
- - lib/health_seven/nodes.rb
56
38
  - lib/health_seven/message.rb
39
+ - lib/health_seven/nodes.rb
40
+ - lib/health_seven.rb
41
+ - spec/messages/corrupt_admit.hl7
57
42
  - spec/messages/admit.hl7
58
43
  - spec/messages/diagnoses.hl7
59
- - spec/messages/corrupt_admit.hl7
60
44
  - spec/messages/oru_r01.hl7
61
45
  - spec/diagnoses_message_spec.rb
62
- - spec/admit_message_spec.rb
63
- - spec/oru_message_spec.rb
64
46
  - spec/spec_helper.rb
47
+ - spec/oru_message_spec.rb
48
+ - spec/admit_message_spec.rb
65
49
  - health_seven.gemspec
66
50
  homepage: https://github.com/hospital-systems/health_seven
67
51
  licenses: []
@@ -89,5 +73,5 @@ specification_version: 3
89
73
  summary: Ruby library for hl7 2.x
90
74
  test_files:
91
75
  - spec/diagnoses_message_spec.rb
92
- - spec/admit_message_spec.rb
93
76
  - spec/oru_message_spec.rb
77
+ - spec/admit_message_spec.rb