summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rdoc8
-rw-r--r--Rakefile5
-rw-r--r--opentox-ruby-api-wrapper.gemspec16
3 files changed, 13 insertions, 16 deletions
diff --git a/README.rdoc b/README.rdoc
index e337907..45cc5f6 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,4 +1,4 @@
-= opentox-ruby-api-wrapper
+= opentox-ruby
Ruby wrapper for the OpenTox REST API (http://www.opentox.org)
@@ -10,14 +10,14 @@ Run the following if you haven't already:
Install the gem:
- sudo gem install helma-opentox-ruby-api-wrapper
+ sudo gem install helma-opentox-ruby
== Usage
- adjust the settings in $HOME/.opentox/config
-- require 'opentox-ruby-api-wrapper' in your ruby application
+- require 'opentox-ruby' in your ruby application
- consult the rdoc API documentation for details
== Copyright
-Copyright (c) 2009 Christoph Helma. See LICENSE for details.
+Copyright (c) 2009-2010 Christoph Helma. See LICENSE for details.
diff --git a/Rakefile b/Rakefile
index 53c6ae9..2578bb4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -8,7 +8,7 @@ begin
gem.summary = %Q{Ruby wrapper for the OpenTox REST API}
gem.description = %Q{Ruby wrapper for the OpenTox REST API (http://www.opentox.org)}
gem.email = "helma@in-silico.ch"
- gem.homepage = "http://github.com/helma/opentox-ruby-api-wrapper"
+ gem.homepage = "http://github.com/helma/opentox-ruby"
gem.authors = ["Christoph Helma, Martin Guetlein, Andreas Maunz, Micha Rautenberg, David Vorgrimmler"]
# dependencies
[ "sinatra",
@@ -24,6 +24,7 @@ begin
"roo",
"spreadsheet",
"google-spreadsheet-ruby",
+ "yajl-ruby",
"tmail",
"rinruby",
"rjb"
@@ -80,7 +81,7 @@ Rake::RDocTask.new do |rdoc|
end
rdoc.rdoc_dir = 'rdoc'
- rdoc.title = "opentox-ruby-api-wrapper #{version}"
+ rdoc.title = "opentox-ruby #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
diff --git a/opentox-ruby-api-wrapper.gemspec b/opentox-ruby-api-wrapper.gemspec
index 58f0b46..fd00851 100644
--- a/opentox-ruby-api-wrapper.gemspec
+++ b/opentox-ruby-api-wrapper.gemspec
@@ -5,11 +5,11 @@
Gem::Specification.new do |s|
s.name = %q{opentox-ruby-api-wrapper}
- s.version = "1.6.6"
+ s.version = "0.0.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Christoph Helma, Martin Guetlein"]
- s.date = %q{2010-09-14}
+ s.date = %q{2010-11-24}
s.description = %q{Ruby wrapper for the OpenTox REST API (http://www.opentox.org)}
s.email = %q{helma@in-silico.ch}
s.executables = ["opentox-install-ubuntu.sh", "yaml2owl.rb", "opentox-install-debian.sh"]
@@ -30,24 +30,23 @@ Gem::Specification.new do |s|
"lib/config/config_ru.rb",
"lib/dataset.rb",
"lib/environment.rb",
- "lib/features.rb",
+ "lib/feature.rb",
"lib/helper.rb",
"lib/model.rb",
"lib/opentox-ruby-api-wrapper.rb",
"lib/opentox.owl",
- "lib/ot-logger.rb",
+ "lib/opentox.rb",
"lib/overwrite.rb",
- "lib/owl-serializer.rb",
- "lib/owl.rb",
"lib/owl.rb.RDF",
"lib/owl.rb.nt",
"lib/owl.rb.rdfxml.initial",
"lib/owl.rb.redland",
+ "lib/parser.rb",
"lib/rest_client_wrapper.rb",
+ "lib/serializer.rb",
"lib/spork.rb",
"lib/task.rb",
"lib/templates/config.yaml",
- "lib/utils.rb",
"lib/validation.rb"
]
s.homepage = %q{http://github.com/helma/opentox-ruby-api-wrapper}
@@ -71,7 +70,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency(%q<rack-flash>, [">= 0"])
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
s.add_runtime_dependency(%q<rubyzip>, [">= 0"])
- s.add_runtime_dependency(%q<builder>, [">= 0"])
s.add_runtime_dependency(%q<roo>, [">= 0"])
s.add_runtime_dependency(%q<spreadsheet>, [">= 0"])
s.add_runtime_dependency(%q<google-spreadsheet-ruby>, [">= 0"])
@@ -99,7 +97,6 @@ Gem::Specification.new do |s|
s.add_dependency(%q<rack-flash>, [">= 0"])
s.add_dependency(%q<nokogiri>, [">= 0"])
s.add_dependency(%q<rubyzip>, [">= 0"])
- s.add_dependency(%q<builder>, [">= 0"])
s.add_dependency(%q<roo>, [">= 0"])
s.add_dependency(%q<spreadsheet>, [">= 0"])
s.add_dependency(%q<google-spreadsheet-ruby>, [">= 0"])
@@ -128,7 +125,6 @@ Gem::Specification.new do |s|
s.add_dependency(%q<rack-flash>, [">= 0"])
s.add_dependency(%q<nokogiri>, [">= 0"])
s.add_dependency(%q<rubyzip>, [">= 0"])
- s.add_dependency(%q<builder>, [">= 0"])
s.add_dependency(%q<roo>, [">= 0"])
s.add_dependency(%q<spreadsheet>, [">= 0"])
s.add_dependency(%q<google-spreadsheet-ruby>, [">= 0"])