Sha256: d3e2f1a0bb3b101d76048bf9cce0f52450f13c342dc368ba8667c99c8629f7b9

Contents?: true

Size: 1.34 KB

Versions: 3

Compression:

Stored size: 1.34 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ecf_classify/version"

Gem::Specification.new do |spec|
  spec.name          = EcfClassify::NAME
  spec.version       = EcfClassify::VERSION
  spec.authors       = ["Delia Casas Pastor","Raphael Müller"]
  spec.email         = ["raphael.mueller@computational.bio.uni-giessen.de"]

  spec.summary       = %q{Gem for installing and running the ECF classify tool}
  spec.description   = %q{}
  spec.homepage      = "http://ecfclassify.computational.bio"
  spec.license       = "GPL3"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    excludes = %w{Dockerfile}
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }.reject {|f| excludes.include? f}
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "aruba", "~> 0.14"

  spec.add_dependency "thor", "~> 0.20"


end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ecf_classify-1.0.2 ecf_classify.gemspec
ecf_classify-1.0.1 ecf_classify.gemspec
ecf_classify-1.0.0 ecf_classify.gemspec