-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtork.gemspec
31 lines (27 loc) · 1.19 KB
/
tork.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
28
29
30
31
# -*- 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',
({:encoding => 'utf-8'} if RUBY_VERSION >= '1.9')
].compact).scan(/Copyright \d+ (.+) <(.+?)>/).transpose
s.homepage = 'http://github.com/sunaku/tork'
s.summary = 'test with fork'
s.description = 'Runs your tests as they change, in parallel.'
s.license = 'ISC'
s.files = `git ls-files`.split("\n")
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.files += Dir['man/man?/*.?'] # UNIX man pages
s.files += Dir['man/**/*.{html,css,js}'] # HTML man pages
s.add_development_dependency 'md2man', '~> 5.0'
s.add_runtime_dependency 'binman', '~> 5.0'
s.add_runtime_dependency 'json', '~> 1.6'
s.add_runtime_dependency 'listen', '~> 1.0'
s.add_runtime_dependency 'diff-lcs', '~> 1.1'
s.add_development_dependency 'rake', '~> 10.0'
end