open_ehr 0.6.1 → 0.9.0

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.
Files changed (115) hide show
  1. data/Gemfile +10 -2
  2. data/Gemfile.lock +58 -18
  3. data/Guardfile +2 -1
  4. data/History.txt +10 -3
  5. data/Manifest.txt +3 -5
  6. data/README.rdoc +36 -32
  7. data/Rakefile +1 -1
  8. data/VERSION +1 -1
  9. data/bin/adl_validator.rb +84 -0
  10. data/lib/open_ehr/am/archetype/constraint_model/primitive.rb +11 -7
  11. data/lib/open_ehr/am/archetype/constraint_model.rb +4 -16
  12. data/lib/open_ehr/am/archetype/ontology.rb +37 -6
  13. data/lib/open_ehr/am/archetype.rb +6 -7
  14. data/lib/open_ehr/am/open_ehr_profile/data_types/text.rb +5 -2
  15. data/lib/open_ehr/parser/adl.rb +19 -0
  16. data/lib/open_ehr/parser/adl_grammar.tt +155 -0
  17. data/lib/open_ehr/parser/adl_parser.rb +48 -0
  18. data/lib/open_ehr/parser/cadl_grammar.tt +803 -0
  19. data/lib/open_ehr/parser/dadl.rb +13 -0
  20. data/lib/open_ehr/parser/dadl_grammar.tt +358 -0
  21. data/lib/open_ehr/parser/exception.rb +68 -0
  22. data/lib/open_ehr/parser/scanner/adl_scanner.rb +819 -0
  23. data/lib/open_ehr/parser/shared_token_grammar.tt +1200 -0
  24. data/lib/open_ehr/parser/validator.rb +20 -0
  25. data/lib/open_ehr/parser.rb +16 -12
  26. data/lib/open_ehr.rb +1 -0
  27. data/open_ehr.gemspec +364 -0
  28. data/spec/lib/open_ehr/am/archetype/archetype_spec.rb +7 -2
  29. data/spec/lib/open_ehr/am/archetype/constraint_model/c_multiple_attribute_spec.rb +0 -6
  30. data/spec/lib/open_ehr/am/archetype/constraint_model/c_object_spec.rb +10 -10
  31. data/spec/lib/open_ehr/am/archetype/constraint_model/c_single_attribute_spec.rb +0 -6
  32. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_boolean_spec.rb +5 -0
  33. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_date_time_spec.rb +5 -0
  34. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_duration_spec.rb +5 -0
  35. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_integer_spec.rb +5 -0
  36. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_primitive_spec.rb +8 -6
  37. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_real_spec.rb +7 -2
  38. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_string_spec.rb +5 -0
  39. data/spec/lib/open_ehr/am/archetype/constraint_model/primitive/c_time_spec.rb +5 -0
  40. data/spec/lib/open_ehr/am/archetype/ontology/archetype_ontology_spec.rb +27 -7
  41. data/spec/lib/open_ehr/am/archetype/ontology/archetype_term_spec.rb +3 -3
  42. data/spec/lib/open_ehr/parser/adl/adl-test-ENTRY.assumed_types.v1.adl +88 -0
  43. data/spec/lib/open_ehr/parser/adl/adl-test-ENTRY.basic_types.v1.adl +143 -0
  44. data/spec/lib/open_ehr/parser/adl/adl-test-ENTRY.basic_types_fail.v1.adl +50 -0
  45. data/spec/lib/open_ehr/parser/adl/adl-test-ENTRY.most_minimal.v1.adl +27 -0
  46. data/spec/lib/open_ehr/parser/adl/adl-test-ENTRY.structure_test1.v1.adl +46 -0
  47. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ACTION.imaging.v1.adl +275 -0
  48. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ACTION.referral.v1.adl +351 -0
  49. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.auscultation-chest.v1.adl +765 -0
  50. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.auscultation.v1.adl +217 -0
  51. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.dimensions-circumference.v1.adl +134 -0
  52. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.dimensions.v1.adl +241 -0
  53. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-abdomen.v1.adl +321 -0
  54. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-chest.v1.adl +379 -0
  55. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-fetus.v1.adl +577 -0
  56. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic-joint.v1.adl +146 -0
  57. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic-lymphnode.v1.adl +176 -0
  58. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic-mass.v1.adl +221 -0
  59. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic.v1.adl +139 -0
  60. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-nervous_system.v1.adl +116 -0
  61. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-uterine_cervix.v1.adl +420 -0
  62. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-uterus.v1.adl +293 -0
  63. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-COMPOSITION.discharge.v1draft.adl +53 -0
  64. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-COMPOSITION.encounter.v1draft.adl +45 -0
  65. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-EVALUATION.adverse.v1.adl +411 -0
  66. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-INSTRUCTION.medication.v1.adl +88 -0
  67. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-INSTRUCTION.referral.v1.adl +84 -0
  68. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.Laboratory_request.v1.adl +492 -0
  69. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.follow_up.v1draft.adl +94 -0
  70. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.imaging.v1.adl +127 -0
  71. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.medication-formulation.v1.adl +457 -0
  72. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.medication.v1.adl +869 -0
  73. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.referral.v1.adl +494 -0
  74. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-OBSERVATION.apgar.v1.adl +545 -0
  75. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-OBSERVATION.blood_pressure.v1.adl +673 -0
  76. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-OBSERVATION.body_mass_index.v1.adl +166 -0
  77. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.findings.v1.adl +47 -0
  78. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.reason_for_encounter.v1.adl +51 -0
  79. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.summary.v1.adl +52 -0
  80. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.vital_signs.v1.adl +54 -0
  81. data/spec/lib/open_ehr/parser/adl/openEHR-EHR-cadl_sample.v1.adl +9 -0
  82. data/spec/lib/open_ehr/parser/adl_parser_spec.rb +210 -0
  83. data/spec/lib/open_ehr/parser/base_spec.rb +19 -0
  84. data/spec/spec.opts +2 -1
  85. data/spec/spec_helper.rb +3 -0
  86. metadata +166 -52
  87. data/doc/README_rdoc.html +0 -148
  88. data/doc/created.rid +0 -2
  89. data/doc/images/brick.png +0 -0
  90. data/doc/images/brick_link.png +0 -0
  91. data/doc/images/bug.png +0 -0
  92. data/doc/images/bullet_black.png +0 -0
  93. data/doc/images/bullet_toggle_minus.png +0 -0
  94. data/doc/images/bullet_toggle_plus.png +0 -0
  95. data/doc/images/date.png +0 -0
  96. data/doc/images/find.png +0 -0
  97. data/doc/images/loadingAnimation.gif +0 -0
  98. data/doc/images/macFFBgHack.png +0 -0
  99. data/doc/images/package.png +0 -0
  100. data/doc/images/page_green.png +0 -0
  101. data/doc/images/page_white_text.png +0 -0
  102. data/doc/images/page_white_width.png +0 -0
  103. data/doc/images/plugin.png +0 -0
  104. data/doc/images/ruby.png +0 -0
  105. data/doc/images/tag_green.png +0 -0
  106. data/doc/images/wrench.png +0 -0
  107. data/doc/images/wrench_orange.png +0 -0
  108. data/doc/images/zoom.png +0 -0
  109. data/doc/index.html +0 -54
  110. data/doc/js/darkfish.js +0 -116
  111. data/doc/js/jquery.js +0 -32
  112. data/doc/js/quicksearch.js +0 -114
  113. data/doc/js/thickbox-compressed.js +0 -10
  114. data/doc/rdoc.css +0 -706
  115. data/lib/#open_ehr.rb# +0 -11
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: open_ehr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.9.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,11 +10,11 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2011-05-09 00:00:00.000000000Z
13
+ date: 2011-09-25 00:00:00.000000000Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: xml-simple
17
- requirement: &17195536660 !ruby/object:Gem::Requirement
17
+ requirement: &17196536560 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ! '>='
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: '0'
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *17195536660
25
+ version_requirements: *17196536560
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: activesupport
28
- requirement: &17195535700 !ruby/object:Gem::Requirement
28
+ requirement: &17196534820 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ! '>='
@@ -33,10 +33,10 @@ dependencies:
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
- version_requirements: *17195535700
36
+ version_requirements: *17196534820
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: locale
39
- requirement: &17195535000 !ruby/object:Gem::Requirement
39
+ requirement: &17196534160 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ! '>='
@@ -44,10 +44,10 @@ dependencies:
44
44
  version: '0'
45
45
  type: :runtime
46
46
  prerelease: false
47
- version_requirements: *17195535000
47
+ version_requirements: *17196534160
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: builder
50
- requirement: &17195534220 !ruby/object:Gem::Requirement
50
+ requirement: &17196533300 !ruby/object:Gem::Requirement
51
51
  none: false
52
52
  requirements:
53
53
  - - ! '>='
@@ -55,10 +55,10 @@ dependencies:
55
55
  version: '0'
56
56
  type: :runtime
57
57
  prerelease: false
58
- version_requirements: *17195534220
58
+ version_requirements: *17196533300
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: jeweler
61
- requirement: &17195533380 !ruby/object:Gem::Requirement
61
+ requirement: &17196532200 !ruby/object:Gem::Requirement
62
62
  none: false
63
63
  requirements:
64
64
  - - ! '>='
@@ -66,10 +66,10 @@ dependencies:
66
66
  version: '0'
67
67
  type: :runtime
68
68
  prerelease: false
69
- version_requirements: *17195533380
69
+ version_requirements: *17196532200
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: i18n
72
- requirement: &17195532380 !ruby/object:Gem::Requirement
72
+ requirement: &17196531600 !ruby/object:Gem::Requirement
73
73
  none: false
74
74
  requirements:
75
75
  - - ! '>='
@@ -77,10 +77,43 @@ dependencies:
77
77
  version: '0'
78
78
  type: :runtime
79
79
  prerelease: false
80
- version_requirements: *17195532380
80
+ version_requirements: *17196531600
81
+ - !ruby/object:Gem::Dependency
82
+ name: treetop
83
+ requirement: &17196530920 !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ! '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ type: :runtime
90
+ prerelease: false
91
+ version_requirements: *17196530920
92
+ - !ruby/object:Gem::Dependency
93
+ name: polyglot
94
+ requirement: &17196530100 !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ type: :runtime
101
+ prerelease: false
102
+ version_requirements: *17196530100
103
+ - !ruby/object:Gem::Dependency
104
+ name: rdoc
105
+ requirement: &17196529060 !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ! '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ type: :runtime
112
+ prerelease: false
113
+ version_requirements: *17196529060
81
114
  - !ruby/object:Gem::Dependency
82
115
  name: rspec
83
- requirement: &17195530780 !ruby/object:Gem::Requirement
116
+ requirement: &17196526440 !ruby/object:Gem::Requirement
84
117
  none: false
85
118
  requirements:
86
119
  - - ! '>='
@@ -88,10 +121,21 @@ dependencies:
88
121
  version: '0'
89
122
  type: :development
90
123
  prerelease: false
91
- version_requirements: *17195530780
124
+ version_requirements: *17196526440
92
125
  - !ruby/object:Gem::Dependency
93
126
  name: guard-rspec
94
- requirement: &17195529740 !ruby/object:Gem::Requirement
127
+ requirement: &17196525420 !ruby/object:Gem::Requirement
128
+ none: false
129
+ requirements:
130
+ - - ! '>='
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ type: :development
134
+ prerelease: false
135
+ version_requirements: *17196525420
136
+ - !ruby/object:Gem::Dependency
137
+ name: ruby-debug19
138
+ requirement: &17196524100 !ruby/object:Gem::Requirement
95
139
  none: false
96
140
  requirements:
97
141
  - - ! '>='
@@ -99,10 +143,54 @@ dependencies:
99
143
  version: '0'
100
144
  type: :development
101
145
  prerelease: false
102
- version_requirements: *17195529740
146
+ version_requirements: *17196524100
103
147
  - !ruby/object:Gem::Dependency
104
148
  name: spork
105
- requirement: &17195528860 !ruby/object:Gem::Requirement
149
+ requirement: &17196522540 !ruby/object:Gem::Requirement
150
+ none: false
151
+ requirements:
152
+ - - ! '>='
153
+ - !ruby/object:Gem::Version
154
+ version: 0.9.0.rc2
155
+ type: :development
156
+ prerelease: false
157
+ version_requirements: *17196522540
158
+ - !ruby/object:Gem::Dependency
159
+ name: guard-spork
160
+ requirement: &17196521000 !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>='
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: *17196521000
169
+ - !ruby/object:Gem::Dependency
170
+ name: simplecov
171
+ requirement: &17196520360 !ruby/object:Gem::Requirement
172
+ none: false
173
+ requirements:
174
+ - - ! '>='
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ type: :development
178
+ prerelease: false
179
+ version_requirements: *17196520360
180
+ - !ruby/object:Gem::Dependency
181
+ name: rb-inotify
182
+ requirement: &17196519580 !ruby/object:Gem::Requirement
183
+ none: false
184
+ requirements:
185
+ - - ! '>='
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: *17196519580
191
+ - !ruby/object:Gem::Dependency
192
+ name: libnotify
193
+ requirement: &17196518140 !ruby/object:Gem::Requirement
106
194
  none: false
107
195
  requirements:
108
196
  - - ! '>='
@@ -110,10 +198,11 @@ dependencies:
110
198
  version: '0'
111
199
  type: :development
112
200
  prerelease: false
113
- version_requirements: *17195528860
201
+ version_requirements: *17196518140
114
202
  description: This project is an implementation of the openEHR specification on Ruby.
115
203
  email: skoba@moss.gr.jp
116
- executables: []
204
+ executables:
205
+ - adl_validator.rb
117
206
  extensions: []
118
207
  extra_rdoc_files:
119
208
  - README.rdoc
@@ -128,36 +217,8 @@ files:
128
217
  - README.rdoc
129
218
  - Rakefile
130
219
  - VERSION
131
- - doc/README_rdoc.html
132
- - doc/created.rid
133
- - doc/images/brick.png
134
- - doc/images/brick_link.png
135
- - doc/images/bug.png
136
- - doc/images/bullet_black.png
137
- - doc/images/bullet_toggle_minus.png
138
- - doc/images/bullet_toggle_plus.png
139
- - doc/images/date.png
140
- - doc/images/find.png
141
- - doc/images/loadingAnimation.gif
142
- - doc/images/macFFBgHack.png
143
- - doc/images/package.png
144
- - doc/images/page_green.png
145
- - doc/images/page_white_text.png
146
- - doc/images/page_white_width.png
147
- - doc/images/plugin.png
148
- - doc/images/ruby.png
149
- - doc/images/tag_green.png
150
- - doc/images/wrench.png
151
- - doc/images/wrench_orange.png
152
- - doc/images/zoom.png
153
- - doc/index.html
154
- - doc/js/darkfish.js
155
- - doc/js/jquery.js
156
- - doc/js/quicksearch.js
157
- - doc/js/thickbox-compressed.js
220
+ - bin/adl_validator.rb
158
221
  - doc/openehr_terminology.xml
159
- - doc/rdoc.css
160
- - lib/#open_ehr.rb#
161
222
  - lib/open_ehr.rb
162
223
  - lib/open_ehr/am.rb
163
224
  - lib/open_ehr/am/archetype.rb
@@ -171,6 +232,16 @@ files:
171
232
  - lib/open_ehr/am/open_ehr_profile/data_types/text.rb
172
233
  - lib/open_ehr/assumed_library_types.rb
173
234
  - lib/open_ehr/parser.rb
235
+ - lib/open_ehr/parser/adl.rb
236
+ - lib/open_ehr/parser/adl_grammar.tt
237
+ - lib/open_ehr/parser/adl_parser.rb
238
+ - lib/open_ehr/parser/cadl_grammar.tt
239
+ - lib/open_ehr/parser/dadl.rb
240
+ - lib/open_ehr/parser/dadl_grammar.tt
241
+ - lib/open_ehr/parser/exception.rb
242
+ - lib/open_ehr/parser/scanner/adl_scanner.rb
243
+ - lib/open_ehr/parser/shared_token_grammar.tt
244
+ - lib/open_ehr/parser/validator.rb
174
245
  - lib/open_ehr/parser/xml_perser.rb
175
246
  - lib/open_ehr/rm.rb
176
247
  - lib/open_ehr/rm/common.rb
@@ -211,6 +282,7 @@ files:
211
282
  - lib/open_ehr/terminology.rb
212
283
  - lib/open_ehr/terminology/open_ehr_terminology.rb
213
284
  - lib/open_ehr/writer.rb
285
+ - open_ehr.gemspec
214
286
  - spec/lib/open_ehr/am/archetype/archetype_spec.rb
215
287
  - spec/lib/open_ehr/am/archetype/assertion/assertion_spec.rb
216
288
  - spec/lib/open_ehr/am/archetype/assertion/assertion_variable_spec.rb
@@ -253,6 +325,48 @@ files:
253
325
  - spec/lib/open_ehr/assumed_library_types/iso8601_time_spec.rb
254
326
  - spec/lib/open_ehr/assumed_library_types/iso8601_timezone_spec.rb
255
327
  - spec/lib/open_ehr/assumed_library_types/time_definitions_spec.rb
328
+ - spec/lib/open_ehr/parser/adl/adl-test-ENTRY.assumed_types.v1.adl
329
+ - spec/lib/open_ehr/parser/adl/adl-test-ENTRY.basic_types.v1.adl
330
+ - spec/lib/open_ehr/parser/adl/adl-test-ENTRY.basic_types_fail.v1.adl
331
+ - spec/lib/open_ehr/parser/adl/adl-test-ENTRY.most_minimal.v1.adl
332
+ - spec/lib/open_ehr/parser/adl/adl-test-ENTRY.structure_test1.v1.adl
333
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ACTION.imaging.v1.adl
334
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ACTION.referral.v1.adl
335
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.auscultation-chest.v1.adl
336
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.auscultation.v1.adl
337
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.dimensions-circumference.v1.adl
338
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.dimensions.v1.adl
339
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-abdomen.v1.adl
340
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-chest.v1.adl
341
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-fetus.v1.adl
342
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic-joint.v1.adl
343
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic-lymphnode.v1.adl
344
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic-mass.v1.adl
345
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-generic.v1.adl
346
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-nervous_system.v1.adl
347
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-uterine_cervix.v1.adl
348
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-CLUSTER.exam-uterus.v1.adl
349
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-COMPOSITION.discharge.v1draft.adl
350
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-COMPOSITION.encounter.v1draft.adl
351
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-EVALUATION.adverse.v1.adl
352
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-INSTRUCTION.medication.v1.adl
353
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-INSTRUCTION.referral.v1.adl
354
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.Laboratory_request.v1.adl
355
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.follow_up.v1draft.adl
356
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.imaging.v1.adl
357
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.medication-formulation.v1.adl
358
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.medication.v1.adl
359
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-ITEM_TREE.referral.v1.adl
360
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-OBSERVATION.apgar.v1.adl
361
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-OBSERVATION.blood_pressure.v1.adl
362
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-OBSERVATION.body_mass_index.v1.adl
363
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.findings.v1.adl
364
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.reason_for_encounter.v1.adl
365
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.summary.v1.adl
366
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-SECTION.vital_signs.v1.adl
367
+ - spec/lib/open_ehr/parser/adl/openEHR-EHR-cadl_sample.v1.adl
368
+ - spec/lib/open_ehr/parser/adl_parser_spec.rb
369
+ - spec/lib/open_ehr/parser/base_spec.rb
256
370
  - spec/lib/open_ehr/rm/common/archetyped/archetyped_spec.rb
257
371
  - spec/lib/open_ehr/rm/common/archetyped/feeder_audit_details_spec.rb
258
372
  - spec/lib/open_ehr/rm/common/archetyped/feeder_audit_spec.rb
@@ -385,7 +499,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
385
499
  version: '0'
386
500
  segments:
387
501
  - 0
388
- hash: -1680814666981750820
502
+ hash: 2975758498502846331
389
503
  required_rubygems_version: !ruby/object:Gem::Requirement
390
504
  none: false
391
505
  requirements:
@@ -394,7 +508,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
394
508
  version: '0'
395
509
  requirements: []
396
510
  rubyforge_project:
397
- rubygems_version: 1.7.2
511
+ rubygems_version: 1.8.7
398
512
  signing_key:
399
513
  specification_version: 3
400
514
  summary: Ruby implementation of the openEHR specification
data/doc/README_rdoc.html DELETED
@@ -1,148 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
-
5
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
- <head>
7
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
8
-
9
- <title>File: README.rdoc [RDoc Documentation]</title>
10
-
11
- <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
12
-
13
- <script src="./js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="./js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="./js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="./js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
21
- </head>
22
-
23
- <body class="file">
24
- <div id="metadata">
25
- <div id="home-metadata">
26
- <div id="home-section" class="section">
27
- <h3 class="section-header">
28
- <a href="./index.html">Home</a>
29
- <a href="./index.html#classes">Classes</a>
30
- <a href="./index.html#methods">Methods</a>
31
- </h3>
32
- </div>
33
- </div>
34
-
35
- <div id="project-metadata">
36
-
37
-
38
- <div id="fileindex-section" class="section project-section">
39
- <h3 class="section-header">Files</h3>
40
- <ul>
41
-
42
- <li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
43
-
44
- </ul>
45
- </div>
46
-
47
-
48
- <div id="classindex-section" class="section project-section">
49
- <h3 class="section-header">Class Index
50
- <span class="search-toggle"><img src="./images/find.png"
51
- height="16" width="16" alt="[+]"
52
- title="show/hide quicksearch" /></span></h3>
53
- <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
54
- <fieldset>
55
- <legend>Quicksearch</legend>
56
- <input type="text" name="quicksearch" value=""
57
- class="quicksearch-field" />
58
- </fieldset>
59
- </form>
60
-
61
- <ul class="link-list">
62
-
63
- </ul>
64
- <div id="no-class-search-results" style="display: none;">No matching classes.</div>
65
- </div>
66
-
67
-
68
- </div>
69
- </div>
70
-
71
- <div id="documentation">
72
- <h1>open_ehr</h1>
73
- <ul>
74
- <li><p>
75
- <a
76
- href="http://github.com/#{github_username}/#{project_name">github.com/#{github_username}/#{project_name</a>}
77
- </p>
78
- </li>
79
- </ul>
80
- <h2>DESCRIPTION:</h2>
81
- <p>
82
- FIX (describe your package)
83
- </p>
84
- <h2>FEATURES/PROBLEMS:</h2>
85
- <ul>
86
- <li><p>
87
- FIX (list of features or problems)
88
- </p>
89
- </li>
90
- </ul>
91
- <h2>SYNOPSIS:</h2>
92
- <pre>
93
- FIX (code sample of usage)
94
- </pre>
95
- <h2>REQUIREMENTS:</h2>
96
- <ul>
97
- <li><p>
98
- FIX (list of requirements)
99
- </p>
100
- </li>
101
- </ul>
102
- <h2>INSTALL:</h2>
103
- <ul>
104
- <li><p>
105
- FIX (sudo gem install, anything else)
106
- </p>
107
- </li>
108
- </ul>
109
- <h2>LICENSE:</h2>
110
- <p>
111
- (The MIT License)
112
- </p>
113
- <p>
114
- Copyright &#169; 2011 Shinji KOBAYASHI
115
- </p>
116
- <p>
117
- Permission is hereby granted, free of charge, to any person obtaining a
118
- copy of this software and associated documentation files (the
119
- &#8216;Software&#8217;), to deal in the Software without restriction,
120
- including without limitation the rights to use, copy, modify, merge,
121
- publish, distribute, sublicense, and/or sell copies of the Software, and to
122
- permit persons to whom the Software is furnished to do so, subject to the
123
- following conditions:
124
- </p>
125
- <p>
126
- The above copyright notice and this permission notice shall be included in
127
- all copies or substantial portions of the Software.
128
- </p>
129
- <p>
130
- THE SOFTWARE IS PROVIDED &#8216;AS IS&#8217;, WITHOUT WARRANTY OF ANY KIND,
131
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
132
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
133
- NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
134
- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
135
- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
136
- USE OR OTHER DEALINGS IN THE SOFTWARE.
137
- </p>
138
-
139
- </div>
140
-
141
- <div id="validator-badges">
142
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
143
- <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
144
- Rdoc Generator</a> 1.1.6</small>.</p>
145
- </div>
146
- </body>
147
- </html>
148
-
data/doc/created.rid DELETED
@@ -1,2 +0,0 @@
1
- Tue, 26 Apr 2011 11:54:13 +0900
2
- README.rdoc Tue, 26 Apr 2011 11:49:13 +0900
data/doc/images/brick.png DELETED
Binary file
Binary file
data/doc/images/bug.png DELETED
Binary file
Binary file
Binary file
Binary file
data/doc/images/date.png DELETED
Binary file
data/doc/images/find.png DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/doc/images/ruby.png DELETED
Binary file
Binary file
Binary file
Binary file
data/doc/images/zoom.png DELETED
Binary file
data/doc/index.html DELETED
@@ -1,54 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
3
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
4
-
5
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
6
- <head>
7
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
8
-
9
- <title>RDoc Documentation</title>
10
-
11
- <link type="text/css" media="screen" href="rdoc.css" rel="stylesheet" />
12
-
13
- <script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
14
- <script src="js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
15
- <script src="js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
16
- <script src="js/darkfish.js" type="text/javascript" charset="utf-8"></script>
17
-
18
- </head>
19
- <body class="indexpage">
20
-
21
-
22
- <h1>RDoc Documentation</h1>
23
-
24
-
25
- <p>This is the API documentation for 'RDoc Documentation'.</p>
26
-
27
-
28
-
29
-
30
- <h2>Files</h2>
31
- <ul>
32
-
33
- <li class="file"><a href="README_rdoc.html">README.rdoc</a></li>
34
-
35
- </ul>
36
-
37
-
38
- <h2 id="classes">Classes/Modules</h2>
39
- <ul>
40
-
41
- </ul>
42
-
43
- <h2 id="methods">Methods</h2>
44
- <ul>
45
-
46
- </ul>
47
-
48
- <div id="validator-badges">
49
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
50
- <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
51
- Rdoc Generator</a> 1.1.6</small>.</p>
52
- </div>
53
- </body>
54
- </html>