forked from kushshah03/cukeforker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbstack_parallel.gemspec
More file actions
28 lines (24 loc) · 1.05 KB
/
bstack_parallel.gemspec
File metadata and controls
28 lines (24 loc) · 1.05 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cukeforker/version"
Gem::Specification.new do |s|
s.name = "bstack-parallel"
s.version = CukeForker::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Kush Shah"]
s.email = ["kush.shah.91@gmail.com"]
s.homepage = ""
s.summary = %q{Library to maintain a forking queue of Cucumber processes}
s.description = %q{Library to maintain a forking queue of Cucumber processes, with optional VNC displays.}
s.rubyforge_project = "bstack-parallel"
s.add_dependency "cucumber", ">= 2.99.0"
s.add_dependency "vnctools", ">= 0.0.5"
s.add_development_dependency "rspec", "~> 2.5"
s.add_development_dependency "coveralls"
s.add_development_dependency "rake", "~> 0.9.2"
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