summaryrefslogtreecommitdiff
path: root/lib/opentox-ruby-api-wrapper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/opentox-ruby-api-wrapper.rb')
-rw-r--r--lib/opentox-ruby-api-wrapper.rb32
1 files changed, 2 insertions, 30 deletions
diff --git a/lib/opentox-ruby-api-wrapper.rb b/lib/opentox-ruby-api-wrapper.rb
index e504e65..9d7e5e5 100644
--- a/lib/opentox-ruby-api-wrapper.rb
+++ b/lib/opentox-ruby-api-wrapper.rb
@@ -1,36 +1,8 @@
#['rubygems', 'sinatra', 'sinatra/respond_to', 'sinatra/url_for', 'builder', 'rest_client', 'yaml', 'spork', 'environment', 'openbabel', 'httpclient'].each do |lib|
-['rubygems', 'sinatra', 'sinatra/url_for', 'builder', 'rest_client', 'yaml', 'spork', 'environment', 'openbabel', 'httpclient'].each do |lib|
+['rubygems', 'sinatra', 'sinatra/url_for', 'builder', 'rest_client', 'yaml', 'environment', 'openbabel', 'httpclient'].each do |lib|
require lib
end
-module OpenTox
-
- class OpenTox
- attr_reader :uri
-
- def initialize(uri)
- @uri = uri
- end
-
- # Get the object name
- def name
- RestClient.get @uri + '/name'
- end
-
- # Deletes an object
- def destroy
- RestClient.delete @uri
- end
-
- # Object path without hostname
- def path
- URI.split(@uri)[5]
- end
-
- end
-
-end
-
-['compound','feature','dataset','algorithm','model','utils'].each do |lib|
+['opentox', 'compound','feature','dataset','algorithm','model','utils'].each do |lib|
require lib
end