EPA_envirofacts 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/.autotest +1 -0
  2. data/.gemtest +0 -0
  3. data/.gitignore +41 -0
  4. data/.rspec +3 -0
  5. data/.travis.yml +7 -0
  6. data/.yardopts +3 -0
  7. data/Gemfile +3 -0
  8. data/LICENSE.md +10 -0
  9. data/README.md +70 -0
  10. data/Rakefile +18 -0
  11. data/epa.gemspec +31 -0
  12. data/lib/epa.rb +18 -0
  13. data/lib/epa/client.rb +14 -0
  14. data/lib/epa/client/connection.rb +19 -0
  15. data/lib/epa/client/pcs.rb +647 -0
  16. data/lib/epa/client/rad_info.rb +384 -0
  17. data/lib/epa/client/request.rb +18 -0
  18. data/lib/epa/version.rb +3 -0
  19. data/spec/epa/client/connection.rb +0 -0
  20. data/spec/epa/client/pcs_spec.rb +282 -0
  21. data/spec/epa/client/rad_info_spec.rb +87 -0
  22. data/spec/epa/client/request_spec.rb +0 -0
  23. data/spec/epa/client_spec.rb +0 -0
  24. data/spec/epa_spec.rb +10 -0
  25. data/spec/fixtures/admin_penalty_order.xml +18 -0
  26. data/spec/fixtures/facility.xml +56 -0
  27. data/spec/fixtures/facility_type.xml +74 -0
  28. data/spec/fixtures/pcs_cmpl_schd_viol.xml +95 -0
  29. data/spec/fixtures/pcs_cmpl_sched.xml +609 -0
  30. data/spec/fixtures/pcs_code_desc.xml +10 -0
  31. data/spec/fixtures/pcs_dmr_measurement.xml +10144 -0
  32. data/spec/fixtures/pcs_effl_lim.xml +2503 -0
  33. data/spec/fixtures/pcs_effl_lim_concentr.xml +2839 -0
  34. data/spec/fixtures/pcs_effl_lim_qty.xml +1245 -0
  35. data/spec/fixtures/pcs_enfor_action.xml +160 -0
  36. data/spec/fixtures/pcs_evidentiary_hearing_event.xml +16 -0
  37. data/spec/fixtures/pcs_industrial_user_info.xml +173 -0
  38. data/spec/fixtures/pcs_inspect.xml +11 -0
  39. data/spec/fixtures/pcs_pci_audit.xml +54 -0
  40. data/spec/fixtures/pcs_permit_event.xml +22 -0
  41. data/spec/fixtures/pcs_permit_facility.xml +66 -0
  42. data/spec/fixtures/pcs_pipe_sched.xml +290 -0
  43. data/spec/fixtures/pcs_pipe_sched_lat_long.xml +526 -0
  44. data/spec/fixtures/pcs_pretreatment_perf_summary.xml +224 -0
  45. data/spec/fixtures/pcs_single_event_viol.xml +84 -0
  46. data/spec/fixtures/pcs_sludge.xml +144 -0
  47. data/spec/fixtures/rad_geo.xml +28 -0
  48. data/spec/fixtures/rad_reg_prog.xml +108 -0
  49. data/spec/fixtures/rad_regulation.xml +20 -0
  50. data/spec/helper.rb +48 -0
  51. metadata +265 -0
@@ -0,0 +1,28 @@
1
+
2
+ <?xml version="1.0"?>
3
+ <rad_geo_locationList Count="1" Rows="1-1000" >
4
+ <rad_geo_location>
5
+ <RAD_SYS_ID>RAD200000137</RAD_SYS_ID>
6
+ <LATITUDE_MEASURE>29.697828</LATITUDE_MEASURE>
7
+ <LONGITUDE_MEASURE>-95.210136</LONGITUDE_MEASURE>
8
+ <HORIZONTAL_ACCURACY_MEASURE/>
9
+ <SUB_ID/>
10
+ <VERTICAL_MEASURE/>
11
+ <VERTICAL_COLLECT_METHOD_CODE/>
12
+ <VERTICAL_REFERENCE_DATA_CODE/>
13
+ <VERTICAL_ACCURACY_MEASURE/>
14
+ <HORIZONTAL_COLLECT_METHOD_CODE/>
15
+ <SOURCE_MAP_SCALE_NUMBER/>
16
+ <COORDINATE_DATA_SOURCE_CODE/>
17
+ <HORIZONTAL_REFER_DATUM_CODE/>
18
+ <REFERENCE_POINT_CODE/>
19
+ <DATA_COLLECTION_DATE/>
20
+ <LOCATION_COMMENTS_TEXT/>
21
+ <GEOMETRIC_TYPE_CODE/>
22
+ <EF_PGM_SOURCE/>
23
+ <RAD_OVERRIDE/>
24
+ <RAD_CHANGE_DATE/>
25
+ <SUB_TYPE_CODE/>
26
+ <RNUM>1</RNUM>
27
+ </rad_geo_location>
28
+ </rad_geo_locationList>
@@ -0,0 +1,108 @@
1
+
2
+ <?xml version="1.0"?>
3
+ <rad_regulatory_progList Count="8" Rows="1-1000" >
4
+ <rad_regulatory_prog>
5
+ <RAD_SYS_ID>RAD200000063</RAD_SYS_ID>
6
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
7
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
8
+ <SUBPART_ID>B</SUBPART_ID>
9
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mines</PROG_FAC_TYPE>
10
+ <PROG_FAC_STATUS/>
11
+ <OVERSIGHT_AGENCY/>
12
+ <ENFORCEMENT_AGENCY/>
13
+ <OPERATING_ORGANIZATION/>
14
+ <RAD_CHANGE_DATE/>
15
+ <RNUM>1</RNUM>
16
+ </rad_regulatory_prog>
17
+ <rad_regulatory_prog>
18
+ <RAD_SYS_ID>RAD200000066</RAD_SYS_ID>
19
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
20
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
21
+ <SUBPART_ID>B</SUBPART_ID>
22
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mines</PROG_FAC_TYPE>
23
+ <PROG_FAC_STATUS/>
24
+ <OVERSIGHT_AGENCY/>
25
+ <ENFORCEMENT_AGENCY/>
26
+ <OPERATING_ORGANIZATION/>
27
+ <RAD_CHANGE_DATE/>
28
+ <RNUM>2</RNUM>
29
+ </rad_regulatory_prog>
30
+ <rad_regulatory_prog>
31
+ <RAD_SYS_ID>RAD200000067</RAD_SYS_ID>
32
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
33
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
34
+ <SUBPART_ID>B</SUBPART_ID>
35
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mines</PROG_FAC_TYPE>
36
+ <PROG_FAC_STATUS/>
37
+ <OVERSIGHT_AGENCY/>
38
+ <ENFORCEMENT_AGENCY/>
39
+ <OPERATING_ORGANIZATION/>
40
+ <RAD_CHANGE_DATE/>
41
+ <RNUM>3</RNUM>
42
+ </rad_regulatory_prog>
43
+ <rad_regulatory_prog>
44
+ <RAD_SYS_ID>RAD200000068</RAD_SYS_ID>
45
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
46
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
47
+ <SUBPART_ID>B</SUBPART_ID>
48
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mines</PROG_FAC_TYPE>
49
+ <PROG_FAC_STATUS/>
50
+ <OVERSIGHT_AGENCY/>
51
+ <ENFORCEMENT_AGENCY/>
52
+ <OPERATING_ORGANIZATION/>
53
+ <RAD_CHANGE_DATE/>
54
+ <RNUM>4</RNUM>
55
+ </rad_regulatory_prog>
56
+ <rad_regulatory_prog>
57
+ <RAD_SYS_ID>RAD200000069</RAD_SYS_ID>
58
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
59
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
60
+ <SUBPART_ID>B</SUBPART_ID>
61
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mines</PROG_FAC_TYPE>
62
+ <PROG_FAC_STATUS/>
63
+ <OVERSIGHT_AGENCY/>
64
+ <ENFORCEMENT_AGENCY/>
65
+ <OPERATING_ORGANIZATION/>
66
+ <RAD_CHANGE_DATE/>
67
+ <RNUM>5</RNUM>
68
+ </rad_regulatory_prog>
69
+ <rad_regulatory_prog>
70
+ <RAD_SYS_ID>RAD200000070</RAD_SYS_ID>
71
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
72
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
73
+ <SUBPART_ID>B</SUBPART_ID>
74
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mines</PROG_FAC_TYPE>
75
+ <PROG_FAC_STATUS/>
76
+ <OVERSIGHT_AGENCY/>
77
+ <ENFORCEMENT_AGENCY/>
78
+ <OPERATING_ORGANIZATION/>
79
+ <RAD_CHANGE_DATE/>
80
+ <RNUM>6</RNUM>
81
+ </rad_regulatory_prog>
82
+ <rad_regulatory_prog>
83
+ <RAD_SYS_ID>RAD200000064</RAD_SYS_ID>
84
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
85
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
86
+ <SUBPART_ID>B</SUBPART_ID>
87
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mine</PROG_FAC_TYPE>
88
+ <PROG_FAC_STATUS/>
89
+ <OVERSIGHT_AGENCY/>
90
+ <ENFORCEMENT_AGENCY/>
91
+ <OPERATING_ORGANIZATION/>
92
+ <RAD_CHANGE_DATE/>
93
+ <RNUM>7</RNUM>
94
+ </rad_regulatory_prog>
95
+ <rad_regulatory_prog>
96
+ <RAD_SYS_ID>RAD200000065</RAD_SYS_ID>
97
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
98
+ <SEC_CIT_REF_FLAG>N</SEC_CIT_REF_FLAG>
99
+ <SUBPART_ID>B</SUBPART_ID>
100
+ <PROG_FAC_TYPE>NESHAPS/Underground Uranium Mine</PROG_FAC_TYPE>
101
+ <PROG_FAC_STATUS/>
102
+ <OVERSIGHT_AGENCY/>
103
+ <ENFORCEMENT_AGENCY/>
104
+ <OPERATING_ORGANIZATION/>
105
+ <RAD_CHANGE_DATE/>
106
+ <RNUM>8</RNUM>
107
+ </rad_regulatory_prog>
108
+ </rad_regulatory_progList>
@@ -0,0 +1,20 @@
1
+
2
+ <?xml version="1.0"?>
3
+ <rad_regulationList Count="1" Rows="1-1000" >
4
+ <rad_regulation>
5
+ <CIT_REF_CODE>40CFR61</CIT_REF_CODE>
6
+ <STATUTE>Clean Air Act</STATUTE>
7
+ <STAT_ACRONYM>CAA</STAT_ACRONYM>
8
+ <TITLE_ID>40</TITLE_ID>
9
+ <REG_TITLE>Protection of Environment</REG_TITLE>
10
+ <PART_ID>61</PART_ID>
11
+ <CFR_PART>National Emission Standards for Hazardous Air Pollutants</CFR_PART>
12
+ <SECTION_ID/>
13
+ <CRF_SECTION/>
14
+ <SUBPART_ID>B</SUBPART_ID>
15
+ <CFR_SUBPART>Radon Emissions from Underground Uranium Mines</CFR_SUBPART>
16
+ <URL/>
17
+ <RAD_CHANGE_DATE/>
18
+ <RNUM>1</RNUM>
19
+ </rad_regulation>
20
+ </rad_regulationList>
@@ -0,0 +1,48 @@
1
+ $:.unshift File.expand_path('..', __FILE__)
2
+ $:.unshift File.expand_path('../../lib', __FILE__)
3
+ require 'simplecov'
4
+ SimpleCov.start
5
+ require 'epa'
6
+ require 'rspec'
7
+
8
+ require 'webmock/rspec'
9
+
10
+ def a_delete(path)
11
+ a_request(:delete, 'http://iaspub.epa.gov/enviro/efservice/' + path)
12
+ end
13
+
14
+ def a_get(path)
15
+ a_request(:get, 'http://iaspub.epa.gov/enviro/efservice/' + path)
16
+ end
17
+
18
+ def a_post(path)
19
+ a_request(:post, 'http://iaspub.epa.gov/enviro/efservice/' + path)
20
+ end
21
+
22
+ def a_put(path)
23
+ a_request(:put, 'http://iaspub.epa.gov/enviro/efservice/' + path)
24
+ end
25
+
26
+ def stub_delete(path)
27
+ stub_request(:delete, 'http://iaspub.epa.gov/enviro/efservice/' + path)
28
+ end
29
+
30
+ def stub_get(path)
31
+ stub_request(:get, 'http://iaspub.epa.gov/enviro/efservice/' + path)
32
+ end
33
+
34
+ def stub_post(path)
35
+ stub_request(:post, 'http://iaspub.epa.gov/enviro/efservice/' + path)
36
+ end
37
+
38
+ def stub_put(path)
39
+ stub_request(:put, 'http://iaspub.epa.gov/enviro/efservice/' + path)
40
+ end
41
+
42
+ def fixture_path
43
+ File.expand_path('../fixtures', __FILE__)
44
+ end
45
+
46
+ def fixture(file)
47
+ File.new(fixture_path + '/' + file)
48
+ end
metadata ADDED
@@ -0,0 +1,265 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: EPA_envirofacts
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - blakeshall
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-08-05 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: ZenTest
17
+ prerelease: false
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: "4.5"
24
+ type: :development
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: maruku
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: "0.6"
35
+ type: :development
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: rake
39
+ prerelease: false
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: "0.9"
46
+ type: :development
47
+ version_requirements: *id003
48
+ - !ruby/object:Gem::Dependency
49
+ name: rspec
50
+ prerelease: false
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ~>
55
+ - !ruby/object:Gem::Version
56
+ version: "2.6"
57
+ type: :development
58
+ version_requirements: *id004
59
+ - !ruby/object:Gem::Dependency
60
+ name: simplecov
61
+ prerelease: false
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: "0.4"
68
+ type: :development
69
+ version_requirements: *id005
70
+ - !ruby/object:Gem::Dependency
71
+ name: yard
72
+ prerelease: false
73
+ requirement: &id006 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: "0.7"
79
+ type: :development
80
+ version_requirements: *id006
81
+ - !ruby/object:Gem::Dependency
82
+ name: webmock
83
+ prerelease: false
84
+ requirement: &id007 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: "1.6"
90
+ type: :development
91
+ version_requirements: *id007
92
+ - !ruby/object:Gem::Dependency
93
+ name: faraday
94
+ prerelease: false
95
+ requirement: &id008 !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ~>
99
+ - !ruby/object:Gem::Version
100
+ version: 0.6.1
101
+ type: :runtime
102
+ version_requirements: *id008
103
+ - !ruby/object:Gem::Dependency
104
+ name: faraday_middleware
105
+ prerelease: false
106
+ requirement: &id009 !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - ~>
110
+ - !ruby/object:Gem::Version
111
+ version: 0.6.3
112
+ type: :runtime
113
+ version_requirements: *id009
114
+ - !ruby/object:Gem::Dependency
115
+ name: hashie
116
+ prerelease: false
117
+ requirement: &id010 !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ~>
121
+ - !ruby/object:Gem::Version
122
+ version: 1.0.0
123
+ type: :runtime
124
+ version_requirements: *id010
125
+ - !ruby/object:Gem::Dependency
126
+ name: multi_xml
127
+ prerelease: false
128
+ requirement: &id011 !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: 0.2.2
134
+ type: :runtime
135
+ version_requirements: *id011
136
+ - !ruby/object:Gem::Dependency
137
+ name: rash
138
+ prerelease: false
139
+ requirement: &id012 !ruby/object:Gem::Requirement
140
+ none: false
141
+ requirements:
142
+ - - ~>
143
+ - !ruby/object:Gem::Version
144
+ version: 0.3.0
145
+ type: :runtime
146
+ version_requirements: *id012
147
+ description: Currently only supports PCS and RADSInfo databases
148
+ email: blake@codeforamerica.org
149
+ executables: []
150
+
151
+ extensions: []
152
+
153
+ extra_rdoc_files: []
154
+
155
+ files:
156
+ - .autotest
157
+ - .gemtest
158
+ - .gitignore
159
+ - .rspec
160
+ - .travis.yml
161
+ - .yardopts
162
+ - Gemfile
163
+ - LICENSE.md
164
+ - README.md
165
+ - Rakefile
166
+ - epa.gemspec
167
+ - lib/epa.rb
168
+ - lib/epa/client.rb
169
+ - lib/epa/client/connection.rb
170
+ - lib/epa/client/pcs.rb
171
+ - lib/epa/client/rad_info.rb
172
+ - lib/epa/client/request.rb
173
+ - lib/epa/version.rb
174
+ - spec/epa/client/connection.rb
175
+ - spec/epa/client/pcs_spec.rb
176
+ - spec/epa/client/rad_info_spec.rb
177
+ - spec/epa/client/request_spec.rb
178
+ - spec/epa/client_spec.rb
179
+ - spec/epa_spec.rb
180
+ - spec/fixtures/admin_penalty_order.xml
181
+ - spec/fixtures/facility.xml
182
+ - spec/fixtures/facility_type.xml
183
+ - spec/fixtures/pcs_cmpl_schd_viol.xml
184
+ - spec/fixtures/pcs_cmpl_sched.xml
185
+ - spec/fixtures/pcs_code_desc.xml
186
+ - spec/fixtures/pcs_dmr_measurement.xml
187
+ - spec/fixtures/pcs_effl_lim.xml
188
+ - spec/fixtures/pcs_effl_lim_concentr.xml
189
+ - spec/fixtures/pcs_effl_lim_qty.xml
190
+ - spec/fixtures/pcs_enfor_action.xml
191
+ - spec/fixtures/pcs_evidentiary_hearing_event.xml
192
+ - spec/fixtures/pcs_industrial_user_info.xml
193
+ - spec/fixtures/pcs_inspect.xml
194
+ - spec/fixtures/pcs_pci_audit.xml
195
+ - spec/fixtures/pcs_permit_event.xml
196
+ - spec/fixtures/pcs_permit_facility.xml
197
+ - spec/fixtures/pcs_pipe_sched.xml
198
+ - spec/fixtures/pcs_pipe_sched_lat_long.xml
199
+ - spec/fixtures/pcs_pretreatment_perf_summary.xml
200
+ - spec/fixtures/pcs_single_event_viol.xml
201
+ - spec/fixtures/pcs_sludge.xml
202
+ - spec/fixtures/rad_geo.xml
203
+ - spec/fixtures/rad_reg_prog.xml
204
+ - spec/fixtures/rad_regulation.xml
205
+ - spec/helper.rb
206
+ homepage: ""
207
+ licenses: []
208
+
209
+ post_install_message:
210
+ rdoc_options: []
211
+
212
+ require_paths:
213
+ - lib
214
+ required_ruby_version: !ruby/object:Gem::Requirement
215
+ none: false
216
+ requirements:
217
+ - - ">="
218
+ - !ruby/object:Gem::Version
219
+ version: "0"
220
+ required_rubygems_version: !ruby/object:Gem::Requirement
221
+ none: false
222
+ requirements:
223
+ - - ">="
224
+ - !ruby/object:Gem::Version
225
+ version: "0"
226
+ requirements: []
227
+
228
+ rubyforge_project:
229
+ rubygems_version: 1.8.3
230
+ signing_key:
231
+ specification_version: 3
232
+ summary: A Ruby wrapper for the EPA envirofacts api
233
+ test_files:
234
+ - spec/epa/client/connection.rb
235
+ - spec/epa/client/pcs_spec.rb
236
+ - spec/epa/client/rad_info_spec.rb
237
+ - spec/epa/client/request_spec.rb
238
+ - spec/epa/client_spec.rb
239
+ - spec/epa_spec.rb
240
+ - spec/fixtures/admin_penalty_order.xml
241
+ - spec/fixtures/facility.xml
242
+ - spec/fixtures/facility_type.xml
243
+ - spec/fixtures/pcs_cmpl_schd_viol.xml
244
+ - spec/fixtures/pcs_cmpl_sched.xml
245
+ - spec/fixtures/pcs_code_desc.xml
246
+ - spec/fixtures/pcs_dmr_measurement.xml
247
+ - spec/fixtures/pcs_effl_lim.xml
248
+ - spec/fixtures/pcs_effl_lim_concentr.xml
249
+ - spec/fixtures/pcs_effl_lim_qty.xml
250
+ - spec/fixtures/pcs_enfor_action.xml
251
+ - spec/fixtures/pcs_evidentiary_hearing_event.xml
252
+ - spec/fixtures/pcs_industrial_user_info.xml
253
+ - spec/fixtures/pcs_inspect.xml
254
+ - spec/fixtures/pcs_pci_audit.xml
255
+ - spec/fixtures/pcs_permit_event.xml
256
+ - spec/fixtures/pcs_permit_facility.xml
257
+ - spec/fixtures/pcs_pipe_sched.xml
258
+ - spec/fixtures/pcs_pipe_sched_lat_long.xml
259
+ - spec/fixtures/pcs_pretreatment_perf_summary.xml
260
+ - spec/fixtures/pcs_single_event_viol.xml
261
+ - spec/fixtures/pcs_sludge.xml
262
+ - spec/fixtures/rad_geo.xml
263
+ - spec/fixtures/rad_reg_prog.xml
264
+ - spec/fixtures/rad_regulation.xml
265
+ - spec/helper.rb