-
Notifications
You must be signed in to change notification settings - Fork 0
/
bives.gemspec
31 lines (20 loc) · 944 Bytes
/
bives.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'bives/version'
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 = "Apache 2.0"
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 "rake"
spec.add_development_dependency "minitest"
spec.add_runtime_dependency "terrapin"
end