clinical 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/clinical.gemspec +1 -1
- data/lib/clinical/trial.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.7
|
data/clinical.gemspec
CHANGED
data/lib/clinical/trial.rb
CHANGED
@@ -102,7 +102,7 @@ module Clinical
|
|
102
102
|
|
103
103
|
metadata[key] = []
|
104
104
|
html.search("div.indent3:nth-last-child(#{value}) td").each do |td|
|
105
|
-
word = td.inner_html.split(/\<br\>/).collect{|i| i.gsub(/\<div.*/, "").strip}
|
105
|
+
word = td.inner_html.split(/\<br\>/).collect{|i| i.gsub(/\<div.*/, "").strip.chomp}
|
106
106
|
if word != ""
|
107
107
|
metadata[key] += word
|
108
108
|
end
|