-
Notifications
You must be signed in to change notification settings - Fork 2
/
ant_hill.gemspec
29 lines (24 loc) · 1 KB
/
ant_hill.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 "ant_hill/version"
Gem::Specification.new do |s|
s.name = "ant_hill"
s.version = AntHill::VERSION
s.authors = ["Ivan Neverov"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Run tests in grid}
s.description = %q{Application for running stuff with same purpose on several nodes
It find "best matching job" (based on setup time) for particular node and setup node
Then it run job on this node
Originally it was desined for CI.}
s.rubyforge_project = "ant_hill"
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"]
# specify any dependencies here; for example:
#s.add_development_dependency "ruby-debug19"
s.add_runtime_dependency "net-ssh"
s.add_development_dependency "rspec"
end