Sha256: 2dcf51fde6cb86ca6f95fc19352349c63c95288d34382fb06a9618c9d76e4055

Contents?: true

Size: 1.09 KB

Versions: 10

Compression:

Stored size: 1.09 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bives/version'
require "bundler/gem_tasks"

require 'rake/testtask'

Rake::TestTask.new do |t|
  t.libs << 'lib/bives'
  t.test_files = FileList['test/*_test.rb']
  t.verbose = true
end

Gem::Specification.new do |spec|
  spec.name          = "bives"
  spec.version       = Bives::VERSION
  spec.authors       = ["Stuart Owen"]
  spec.email         = ["stuart.owen@manchester.ac.uk"]
  spec.description   = %q{Ruby wrapper for the BiVeS model version comparison tool}
  spec.summary       = %q{Ruby wrapper to interface with the BiVeS model version comparison tool - http://sems.uni-rostock.de/projects/bives/}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
end




Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
bives-0.10 bives.gemspec
bives-0.9 bives.gemspec
bives-0.8 bives.gemspec
bives-0.7 bives.gemspec
bives-0.6 bives.gemspec
bives-0.5 bives.gemspec
bives-0.4 bives.gemspec
bives-0.3 bives.gemspec
bives-0.2 bives.gemspec
bives-0.1 bives.gemspec