summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2015-08-19 16:48:43 +0200
committerChristoph Helma <helma@in-silico.ch>2015-08-19 16:48:43 +0200
commit5d22fb5ee6fa207816f48b9f1e1ec778f0b47d67 (patch)
tree46bffca072cc7371e51d582693a1ebef4972dd02
parentc8e93cf1c391b7632d6c50c4630143643af2a11f (diff)
git calls removed from lazar.gemspec (git does not work when installed as a gem)
-rw-r--r--VERSION2
-rw-r--r--lazar.gemspec5
2 files changed, 3 insertions, 4 deletions
diff --git a/VERSION b/VERSION
index 81340c7..bbdeab6 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.0.4
+0.0.5
diff --git a/lazar.gemspec b/lazar.gemspec
index 6fe3f5b..1444b24 100644
--- a/lazar.gemspec
+++ b/lazar.gemspec
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
s.rubyforge_project = "lazar"
- s.files = `git ls-files`.split("\n")
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
+ s.files = Dir["lib/*rb"]
+ s.test_files = Dir["test/*rb"]
s.extensions = %w[ext/lazar/extconf.rb]
s.require_paths = ["lib"]
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "bundler"
s.add_runtime_dependency "rest-client"
s.add_runtime_dependency 'nokogiri'
- #s.add_runtime_dependency "openbabel"
s.add_runtime_dependency 'rserve-client'
s.add_runtime_dependency "mongoid", '~> 5.0beta'