ruby_astm 0.0.7 → 0.0.8
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 +4 -4
- data/lib/publisher/poller.rb +12 -12
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e6d0a24cedc951783379aa035d1f69af7485396
|
4
|
+
data.tar.gz: d98fa138030445458fafac8fd0ee991a5eb4a9c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b283bb3d88c6c2c384e5ed064bd3df70c64abbff6d2ef386a8baa68c4a13f6ee8e68451e70a6e0656cb446dc05f9891c9afc7d6a01aa4fd113d4cb622398daf
|
7
|
+
data.tar.gz: 3ad48b3e7a8517e13fecd732870b9e0c679256260097df2c11921246faeb58a09521a93d5613f64e28c5e46d98a4a44f43983072a6361f1de6086601b8db4b07
|
data/lib/publisher/poller.rb
CHANGED
@@ -119,33 +119,33 @@ class Poller
|
|
119
119
|
## urine -> index 32
|
120
120
|
## esr -> index 33
|
121
121
|
unless record[28].blank?
|
122
|
-
tube_ids[EDTA] = record[28]
|
123
|
-
tests_hash[EDTA + ":" + record[28]] = []
|
122
|
+
tube_ids[EDTA] = record[28].to_s
|
123
|
+
tests_hash[EDTA + ":" + record[28].to_s] = []
|
124
124
|
end
|
125
125
|
|
126
126
|
unless record[29].blank?
|
127
|
-
tube_ids[SERUM] = record[29]
|
128
|
-
tests_hash[SERUM + ":" + record[29]] = []
|
127
|
+
tube_ids[SERUM] = record[29].to_s
|
128
|
+
tests_hash[SERUM + ":" + record[29].to_s] = []
|
129
129
|
end
|
130
130
|
|
131
131
|
unless record[30].blank?
|
132
|
-
tube_ids[PLASMA] = record[30]
|
133
|
-
tests_hash[PLASMA + ":" + record[30]] = []
|
132
|
+
tube_ids[PLASMA] = record[30].to_s
|
133
|
+
tests_hash[PLASMA + ":" + record[30].to_s] = []
|
134
134
|
end
|
135
135
|
|
136
136
|
unless record[31].blank?
|
137
|
-
tube_ids[FLUORIDE] = record[31]
|
138
|
-
tests_hash[FLUORIDE + ":" + record[31]] = []
|
137
|
+
tube_ids[FLUORIDE] = record[31].to_s
|
138
|
+
tests_hash[FLUORIDE + ":" + record[31].to_s] = []
|
139
139
|
end
|
140
140
|
|
141
141
|
unless record[32].blank?
|
142
|
-
tube_ids[URINE] = record[32]
|
143
|
-
tests_hash[URINE + ":" + record[32]] = []
|
142
|
+
tube_ids[URINE] = record[32].to_s
|
143
|
+
tests_hash[URINE + ":" + record[32].to_s] = []
|
144
144
|
end
|
145
145
|
|
146
146
|
unless record[33].blank?
|
147
|
-
tube_ids[ESR] = record[33]
|
148
|
-
tests_hash[ESR + ":" + record[33]] = []
|
147
|
+
tube_ids[ESR] = record[33].to_s
|
148
|
+
tests_hash[ESR + ":" + record[33].to_s] = []
|
149
149
|
end
|
150
150
|
|
151
151
|
|