summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2012-08-01 15:01:38 +0200
committerChristoph Helma <helma@in-silico.ch>2012-08-01 15:01:38 +0200
commit5fc9e1d3e64306bff72d62b08be315f0f7431a46 (patch)
tree84e4cea1d693155d69faff6c991b9d7d09b7d38c
parent5be059caa873bd2697acc92c0651ca04aa2a5baa (diff)
gem files added
-rw-r--r--.gitignore10
-rw-r--r--Gemfile4
-rw-r--r--Rakefile1
-rw-r--r--VERSION1
-rw-r--r--model.gemspec25
5 files changed, 35 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index 45c8bd1..4040c6c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,4 @@
-tmp/*
-*.sqlite3
-log/*
-db/*
-public/*
-data/*
+*.gem
+.bundle
+Gemfile.lock
+pkg/*
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..36f1a90
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,4 @@
+source :gemcutter
+gemspec
+gem "opentox-server", :path => "~/opentox-server"
+gem "opentox-client", :path => "~/opentox-client"
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..2995527
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1 @@
+require "bundler/gem_tasks"
diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..3eefcb9
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+1.0.0
diff --git a/model.gemspec b/model.gemspec
new file mode 100644
index 0000000..d75232c
--- /dev/null
+++ b/model.gemspec
@@ -0,0 +1,25 @@
+# -*- encoding: utf-8 -*-
+$:.push File.expand_path("../lib", __FILE__)
+
+Gem::Specification.new do |s|
+ s.name = "model"
+ s.version = File.read("./VERSION")
+ s.authors = ["Christoph Helma"]
+ s.email = ["helma@in-silico.ch"]
+ s.homepage = ""
+ s.summary = %q{Simple OpenTox Model Service}
+ s.description = %q{Simple OpenTox Model Service}
+ s.license = 'GPL-3'
+
+ s.rubyforge_project = "feature"
+
+ s.files = `git ls-files`.split("\n")
+ #s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
+ #s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
+ #s.require_paths = ["lib"]
+ s.required_ruby_version = '>= 1.9.2'
+
+ # specify any dependencies here; for example:
+ s.add_runtime_dependency "opentox-server"
+ s.post_install_message = "Please configure your service in ~/.opentox/config/model.rb"
+end