-
Notifications
You must be signed in to change notification settings - Fork 2
/
jcukeforker.gemspec
29 lines (25 loc) · 1.1 KB
/
jcukeforker.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "jcukeforker/version"
Gem::Specification.new do |s|
s.name = "jcukeforker"
s.version = JCukeForker::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jason Gowan", "Jari Bakken"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{CukeForker, for JRuby and Windows}
s.description = %q{Library to maintain a forking queue of Cucumber processes, with optional VNC displays. Designed for JRuby and Windows.}
s.rubyforge_project = "jcukeforker"
s.add_dependency "cucumber", ">= 2.3.2"
s.add_dependency "vnctools", ">= 0.1.1"
s.add_dependency "childprocess", ">= 0.5.3"
s.add_development_dependency "rspec"
s.add_development_dependency "coveralls"
s.add_development_dependency "rake", "~> 10"
s.add_development_dependency "pry"
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"]
end