Sha256: d9e714796dde89dd34363a3ba21008bf085f52b4f293f09a8a5bda2cb0ea82a5
Contents?: true
Size: 928 Bytes
Versions: 2
Compression:
Stored size: 928 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "tork/version" Gem::Specification.new do |s| s.name = "tork" s.version = Tork::VERSION s.authors, s.email = File.read('LICENSE').scan(/Copyright \d+ (.+) <(.+?)>/).transpose s.homepage = "http://github.com/sunaku/tork" s.summary = "Continuous testing tool for Ruby" s.description = nil s.files = `git ls-files`.split("\n") + Dir["man/**/*"] 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.add_runtime_dependency 'binman', '~> 3' s.add_runtime_dependency 'json', '>= 1.6.1', '< 2' s.add_runtime_dependency 'guard', '>= 0.9.0', '< 1' s.add_runtime_dependency 'diff-lcs', '>= 1.1.2', '< 2' s.add_development_dependency 'md2man', '~> 1' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tork-15.1.0 | tork.gemspec |
tork-15.0.1 | tork.gemspec |