tnql 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.hound.yml +10 -0
  4. data/.rubocop.yml +7 -0
  5. data/.travis.yml +11 -0
  6. data/CODE_OF_CONDUCT.md +13 -0
  7. data/Gemfile +4 -0
  8. data/Guardfile +15 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +74 -0
  11. data/Rakefile +12 -0
  12. data/bin/console +10 -0
  13. data/bin/setup +7 -0
  14. data/code_safety.yml +272 -0
  15. data/lib/tnql.rb +4 -0
  16. data/lib/tnql/constants.rb +8 -0
  17. data/lib/tnql/grammars.rb +16 -0
  18. data/lib/tnql/grammars/age.treetop +63 -0
  19. data/lib/tnql/grammars/batch_types.treetop +65 -0
  20. data/lib/tnql/grammars/dates.treetop +35 -0
  21. data/lib/tnql/grammars/diagnosis.treetop +23 -0
  22. data/lib/tnql/grammars/e_base_records.treetop +86 -0
  23. data/lib/tnql/grammars/main.treetop +54 -0
  24. data/lib/tnql/grammars/patient.treetop +39 -0
  25. data/lib/tnql/grammars/provider.treetop +21 -0
  26. data/lib/tnql/grammars/registration_status.treetop +11 -0
  27. data/lib/tnql/grammars/registry.treetop +15 -0
  28. data/lib/tnql/grammars/staging.treetop +23 -0
  29. data/lib/tnql/grammars/treatment.treetop +35 -0
  30. data/lib/tnql/grammars/tumour_type.treetop +54 -0
  31. data/lib/tnql/grammars/vital_status.treetop +19 -0
  32. data/lib/tnql/nodes.rb +25 -0
  33. data/lib/tnql/nodes/age.rb +82 -0
  34. data/lib/tnql/nodes/batch_types.rb +52 -0
  35. data/lib/tnql/nodes/dates.rb +50 -0
  36. data/lib/tnql/nodes/diagnosis.rb +31 -0
  37. data/lib/tnql/nodes/e_base_records.rb +61 -0
  38. data/lib/tnql/nodes/main.rb +11 -0
  39. data/lib/tnql/nodes/patient.rb +9 -0
  40. data/lib/tnql/nodes/provider.rb +24 -0
  41. data/lib/tnql/nodes/registration_status.rb +27 -0
  42. data/lib/tnql/nodes/registry.rb +33 -0
  43. data/lib/tnql/nodes/staging.rb +17 -0
  44. data/lib/tnql/nodes/treatment.rb +45 -0
  45. data/lib/tnql/nodes/tumour_type.rb +74 -0
  46. data/lib/tnql/nodes/vital_status.rb +15 -0
  47. data/lib/tnql/parser.rb +56 -0
  48. data/lib/tnql/treetop/extensions.rb +20 -0
  49. data/lib/tnql/version.rb +4 -0
  50. data/tnql.gemspec +39 -0
  51. metadata +286 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 99dfd787b99f29082bb18041758d93f261704a1a
4
+ data.tar.gz: b8728f7ea0434750d1a826337e913ae1b3fa0eaa
5
+ SHA512:
6
+ metadata.gz: 91a435b0bf98d918963cd87f0a3e1380aff976115a849c410e3e3084a0ecd2b36f4e9cf1162a0025dc291cc8426cb7ec002aee4d0ca6e1f13efbeb4b560d6592
7
+ data.tar.gz: 83252c36870d064f10a7ca630c1cc83779efa4e4f2d2abcfcab97e1c8ca57d6affc0cbe8e6c209892ebd6e807e9a74242599f6d8fb9b424da9da1cc0178972b7
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,10 @@
1
+ fail_on_violations: true
2
+
3
+ coffeescript:
4
+ enabled: false
5
+ javascript:
6
+ enabled: false
7
+ ruby:
8
+ config_file: .rubocop.yml
9
+ scss:
10
+ enabled: false
@@ -0,0 +1,7 @@
1
+ inherit_from: 'https://raw.githubusercontent.com/PublicHealthEngland/ndr_dev_support/master/.rubocop.yml'
2
+
3
+ Rails:
4
+ Enabled: false
5
+
6
+ AllCops:
7
+ TargetRubyVersion: 2.3
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 2.2.5
5
+ - 2.3.1
6
+
7
+ sudo: false
8
+
9
+ cache: bundler
10
+
11
+ before_script: "bundle update"
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in tnql.gemspec
4
+ gemspec
@@ -0,0 +1,15 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ # automatically check Ruby code style with Rubocop when files are modified
5
+ guard :rubocop, all_on_start: false, keep_failed: false do
6
+ watch(/.+\.rb$/)
7
+ watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
8
+ end
9
+
10
+ guard :minitest do
11
+ watch(%r{^test/.+_test\.rb$})
12
+ watch('test/test_helper.rb') { 'test' }
13
+
14
+ watch(%r{^lib/tnql/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
15
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Public Health England
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,74 @@
1
+ # TNQL [![Build Status](https://travis-ci.org/PublicHealthEngland/tnql.svg?branch=master)](https://travis-ci.org/PublicHealthEngland/tnql)
2
+
3
+ Tumour Natural Query Language (TNQL) is a [Treetop](http://treetop.rubyforge.org/) driven Domain Specific Language (DSL) used by the Public Health England (PHE) National Cancer Registration and Analysis Service (NCRAS) to identify cohorts of tumours.
4
+
5
+ Used for analysis, research and day-to-day operations, it was first created in March 2011 to empower non-technical users to write sophisticated human readable queries without the need to know or understand the underlying datastore and/or schema.
6
+
7
+ In moving it into a gem, TNQL is being further decoupled from the specifics of the NCRAS systems by producing an intermediate representation, known as Disease Intermediate Representation (DIR). This allows us to:
8
+
9
+ 1. implement separate DIR adapters for different datastores (e.g. SQL and NoSQL datastores);
10
+ 2. utilize the same DIR adapters for different but over-lapping DSLs, starting with the Congenital Anomaly Natural Query Language (CANQL); and
11
+ 3. pass DIR queries to non-ruby backend systems using any simple format like JSON.
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ ```ruby
18
+ gem 'tnql'
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install tnql
28
+
29
+ ## Usage
30
+
31
+ Here is a simple example showing a TNQL query of all Colon tumours diagnosed at "Hello World" Hospital:
32
+
33
+ ```ruby
34
+ require 'tnql'
35
+ require 'json'
36
+
37
+ query = 'All C18 Tumours Diagnosed at Hello World Hospital'
38
+ parser = Tnql::Parser.new(query)
39
+
40
+ if parser.valid?
41
+ puts JSON.dump(parser.meta_data)
42
+ end
43
+ ```
44
+
45
+ would output:
46
+
47
+ ```json
48
+ {"tumour.primarycode":{"begins":["C18"]},"diagnosis.providername":{"begins":"HELLO WORLD","interval":"29...49"}}
49
+ ```
50
+
51
+ The parser is case insensitive. An example of an almost fully involved TNQL query is:
52
+
53
+ > First 27 Final Y0401 Non-invasive Stage 4 Head and Neck Tumours Diagnosed Between August 2010 and Oct 2010 at Hospital RGT01 Treated at Hospital RGN42 With Wait Action and Unprocessed PAS or Somerset Records for Dead Male Patients Who Were Born in 1999, Died Between May 2001 and Aug 2003, and Have no Death Certificate
54
+
55
+ Please see the tests for many more examples.
56
+
57
+ ## Development
58
+
59
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
60
+
61
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
62
+
63
+ PLEASE NOTE: A side-effect of decoupling TNQL from the NCRAS SQL adapter is that more of the grammar logic can be DRYed up, esp. in relation to providers. We plan to fix this and some internal namespacing in forthcoming releases.
64
+
65
+ ## Contributing
66
+
67
+ Bug reports and pull requests are welcome on GitHub at https://github.com/PublicHealthEngland/tnql.
68
+
69
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
70
+
71
+ ## License
72
+
73
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
74
+
@@ -0,0 +1,12 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+ require 'ndr_dev_support/tasks'
4
+
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.libs << 'test'
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ t.verbose = false
9
+ t.warning = false
10
+ end
11
+
12
+ task default: :test
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'tnql'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ require 'pry'
10
+ Pry.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,272 @@
1
+ ---
2
+ file safety:
3
+ ".gitignore":
4
+ comments:
5
+ reviewed_by: timgentry
6
+ safe_revision: 065dcccb9db71374cea5aad104657a5c1f877d1c
7
+ ".hound.yml":
8
+ comments:
9
+ reviewed_by: timgentry
10
+ safe_revision: 1cf068b17559ed381e013fe71a481eb3db15f553
11
+ ".rubocop.yml":
12
+ comments:
13
+ reviewed_by: timgentry
14
+ safe_revision: b85a30c6fd89eddc6597323f7afe7ea2859ae9ac
15
+ ".travis.yml":
16
+ comments:
17
+ reviewed_by: timgentry
18
+ safe_revision: d4f2a88af5df3bde2a58185e8095821fafc599bf
19
+ CODE_OF_CONDUCT.md:
20
+ comments:
21
+ reviewed_by: timgentry
22
+ safe_revision: 065dcccb9db71374cea5aad104657a5c1f877d1c
23
+ Gemfile:
24
+ comments:
25
+ reviewed_by: timgentry
26
+ safe_revision: 065dcccb9db71374cea5aad104657a5c1f877d1c
27
+ Guardfile:
28
+ comments:
29
+ reviewed_by: timgentry
30
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
31
+ LICENSE.txt:
32
+ comments:
33
+ reviewed_by: timgentry
34
+ safe_revision: 065dcccb9db71374cea5aad104657a5c1f877d1c
35
+ README.md:
36
+ comments:
37
+ reviewed_by: timgentry
38
+ safe_revision: f47d9a806bce9a24ee538dae9674c7deba79a7a8
39
+ Rakefile:
40
+ comments:
41
+ reviewed_by: timgentry
42
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
43
+ bin/console:
44
+ comments:
45
+ reviewed_by: timgentry
46
+ safe_revision: fdea3ed4f37453978857611724116f70dd08f1fd
47
+ bin/setup:
48
+ comments:
49
+ reviewed_by: timgentry
50
+ safe_revision: 065dcccb9db71374cea5aad104657a5c1f877d1c
51
+ lib/tnql.rb:
52
+ comments:
53
+ reviewed_by: timgentry
54
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
55
+ lib/tnql/constants.rb:
56
+ comments:
57
+ reviewed_by: timgentry
58
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
59
+ lib/tnql/grammars.rb:
60
+ comments:
61
+ reviewed_by: timgentry
62
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
63
+ lib/tnql/grammars/age.treetop:
64
+ comments: It is a known issue that this is potentially susceptible to certain
65
+ kinds of DoS attack
66
+ reviewed_by: timgentry
67
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
68
+ lib/tnql/grammars/batch_types.treetop:
69
+ comments: It is a known issue that this is potentially susceptible to certain
70
+ kinds of DoS attack
71
+ reviewed_by: timgentry
72
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
73
+ lib/tnql/grammars/dates.treetop:
74
+ comments: It is a known issue that this is potentially susceptible to certain
75
+ kinds of DoS attack
76
+ reviewed_by: timgentry
77
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
78
+ lib/tnql/grammars/diagnosis.treetop:
79
+ comments: It is a known issue that this is potentially susceptible to certain
80
+ kinds of DoS attack
81
+ reviewed_by: timgentry
82
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
83
+ lib/tnql/grammars/e_base_records.treetop:
84
+ comments: It is a known issue that this is potentially susceptible to certain
85
+ kinds of DoS attack
86
+ reviewed_by: timgentry
87
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
88
+ lib/tnql/grammars/main.treetop:
89
+ comments: It is a known issue that this is potentially susceptible to certain
90
+ kinds of DoS attack
91
+ reviewed_by: timgentry
92
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
93
+ lib/tnql/grammars/patient.treetop:
94
+ comments: It is a known issue that this is potentially susceptible to certain
95
+ kinds of DoS attack
96
+ reviewed_by: timgentry
97
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
98
+ lib/tnql/grammars/provider.treetop:
99
+ comments: It is a known issue that this is potentially susceptible to certain
100
+ kinds of DoS attack
101
+ reviewed_by: timgentry
102
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
103
+ lib/tnql/grammars/registration_status.treetop:
104
+ comments: It is a known issue that this is potentially susceptible to certain
105
+ kinds of DoS attack
106
+ reviewed_by: timgentry
107
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
108
+ lib/tnql/grammars/registry.treetop:
109
+ comments: It is a known issue that this is potentially susceptible to certain
110
+ kinds of DoS attack
111
+ reviewed_by: timgentry
112
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
113
+ lib/tnql/grammars/staging.treetop:
114
+ comments: It is a known issue that this is potentially susceptible to certain
115
+ kinds of DoS attack
116
+ reviewed_by: timgentry
117
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
118
+ lib/tnql/grammars/treatment.treetop:
119
+ comments: It is a known issue that this is potentially susceptible to certain
120
+ kinds of DoS attack
121
+ reviewed_by: timgentry
122
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
123
+ lib/tnql/grammars/tumour_type.treetop:
124
+ comments: It is a known issue that this is potentially susceptible to certain
125
+ kinds of DoS attack
126
+ reviewed_by: timgentry
127
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
128
+ lib/tnql/grammars/vital_status.treetop:
129
+ comments: It is a known issue that this is potentially susceptible to certain
130
+ kinds of DoS attack
131
+ reviewed_by: timgentry
132
+ safe_revision: b3a8b33cbc5dd29822e0e6ded32500ccd7a15670
133
+ lib/tnql/nodes.rb:
134
+ comments:
135
+ reviewed_by: timgentry
136
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
137
+ lib/tnql/nodes/age.rb:
138
+ comments:
139
+ reviewed_by: timgentry
140
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
141
+ lib/tnql/nodes/batch_types.rb:
142
+ comments:
143
+ reviewed_by: timgentry
144
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
145
+ lib/tnql/nodes/dates.rb:
146
+ comments:
147
+ reviewed_by: timgentry
148
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
149
+ lib/tnql/nodes/diagnosis.rb:
150
+ comments:
151
+ reviewed_by: timgentry
152
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
153
+ lib/tnql/nodes/e_base_records.rb:
154
+ comments:
155
+ reviewed_by: timgentry
156
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
157
+ lib/tnql/nodes/main.rb:
158
+ comments:
159
+ reviewed_by: timgentry
160
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
161
+ lib/tnql/nodes/patient.rb:
162
+ comments:
163
+ reviewed_by: timgentry
164
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
165
+ lib/tnql/nodes/provider.rb:
166
+ comments:
167
+ reviewed_by: timgentry
168
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
169
+ lib/tnql/nodes/registration_status.rb:
170
+ comments:
171
+ reviewed_by: timgentry
172
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
173
+ lib/tnql/nodes/registry.rb:
174
+ comments:
175
+ reviewed_by: timgentry
176
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
177
+ lib/tnql/nodes/staging.rb:
178
+ comments:
179
+ reviewed_by: timgentry
180
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
181
+ lib/tnql/nodes/treatment.rb:
182
+ comments:
183
+ reviewed_by: timgentry
184
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
185
+ lib/tnql/nodes/tumour_type.rb:
186
+ comments:
187
+ reviewed_by: timgentry
188
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
189
+ lib/tnql/nodes/vital_status.rb:
190
+ comments:
191
+ reviewed_by: timgentry
192
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
193
+ lib/tnql/parser.rb:
194
+ comments:
195
+ reviewed_by: timgentry
196
+ safe_revision: 40100d5f23601b0033ddcf0bd7a6367446066cc5
197
+ lib/tnql/treetop/extensions.rb:
198
+ comments:
199
+ reviewed_by: timgentry
200
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
201
+ lib/tnql/version.rb:
202
+ comments:
203
+ reviewed_by: timgentry
204
+ safe_revision: 44b3b8fee3cf50c9fe614dbccc9eccc27f0c87a3
205
+ test/nodes/age_test.rb:
206
+ comments:
207
+ reviewed_by: timgentry
208
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
209
+ test/nodes/dates_test.rb:
210
+ comments:
211
+ reviewed_by: timgentry
212
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
213
+ test/nodes/diagnosis_test.rb:
214
+ comments:
215
+ reviewed_by: timgentry
216
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
217
+ test/nodes/e_base_records_test.rb:
218
+ comments:
219
+ reviewed_by: timgentry
220
+ safe_revision: 0749ad008871e286c6e0450a733599f0c86ced5f
221
+ test/nodes/main_test.rb:
222
+ comments:
223
+ reviewed_by: timgentry
224
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
225
+ test/nodes/patient_test.rb:
226
+ comments:
227
+ reviewed_by: timgentry
228
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
229
+ test/nodes/provider_test.rb:
230
+ comments:
231
+ reviewed_by: timgentry
232
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
233
+ test/nodes/registration_status_test.rb:
234
+ comments:
235
+ reviewed_by: timgentry
236
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
237
+ test/nodes/registry_test.rb:
238
+ comments:
239
+ reviewed_by: timgentry
240
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
241
+ test/nodes/staging_test.rb:
242
+ comments:
243
+ reviewed_by: timgentry
244
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
245
+ test/nodes/treatment_test.rb:
246
+ comments:
247
+ reviewed_by: timgentry
248
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
249
+ test/nodes/tumour_type_test.rb:
250
+ comments:
251
+ reviewed_by: timgentry
252
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
253
+ test/nodes/vital_status_test.rb:
254
+ comments:
255
+ reviewed_by: timgentry
256
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
257
+ test/parser_test.rb:
258
+ comments:
259
+ reviewed_by: timgentry
260
+ safe_revision: 40100d5f23601b0033ddcf0bd7a6367446066cc5
261
+ test/test_helper.rb:
262
+ comments:
263
+ reviewed_by: timgentry
264
+ safe_revision: 2c3dd20879903b98f7f05d5d3e73b1478c275c93
265
+ test/tnql_test.rb:
266
+ comments:
267
+ reviewed_by: timgentry
268
+ safe_revision: 61b0293f89d57118268e15fc49b529c64bbbe2b7
269
+ tnql.gemspec:
270
+ comments:
271
+ reviewed_by: timgentry
272
+ safe_revision: 44b3b8fee3cf50c9fe614dbccc9eccc27f0c87a3