rscript 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. data/lib/rscript_base.rb +1 -1
  2. metadata +1 -1
data/lib/rscript_base.rb CHANGED
@@ -34,7 +34,7 @@ class RScriptBase
34
34
  @url_base = rsf[/\w+:\/\/[^\/]+/]
35
35
  return open(rsf, "UserAgent" => "Ruby-SourceCodeReader").read
36
36
  elsif rsf[/^\//]
37
- return @url_base + rsf
37
+ return @url_base.to_s + rsf.to_s
38
38
  else
39
39
  return File.open(rsf,'r').read
40
40
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rscript
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors: []
7
7