helma-opentox-ruby-api-wrapper 0.2.0 → 0.2.1
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.
- data/VERSION +1 -1
- data/lib/opentox-ruby-api-wrapper.rb +1 -1
- data/opentox-ruby-api-wrapper.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -100,7 +100,7 @@ module OpenTox
|
|
100
100
|
elsif params[:name] and params[:filename]
|
101
101
|
@uri = `curl -X POST -F file=@#{params[:filename]} -F name="#{params[:name]}" #{ENV['OPENTOX_DATASET']}`
|
102
102
|
elsif params[:name]
|
103
|
-
@uri = RestClient.post ENV['OPENTOX_DATASET'], :name => params[:name]
|
103
|
+
@uri = RestClient.post ENV['OPENTOX_DATASET'], :name => params[:name]
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|