rscript 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rscript_base.rb +1 -1
- metadata +1 -1
data/lib/rscript_base.rb
CHANGED
@@ -21,7 +21,7 @@ class RScriptBase
|
|
21
21
|
out_buffer = ''
|
22
22
|
src = script.attribute('src')
|
23
23
|
if src then
|
24
|
-
out_buffer = read_sourcecode(script.attribute('src').value)
|
24
|
+
out_buffer = read_sourcecode(script.attribute('src').value.to_s)
|
25
25
|
else
|
26
26
|
code = script.text.to_s.strip.length > 0 ? script.text : script.cdatas.join.strip
|
27
27
|
out_buffer = code
|