-
Notifications
You must be signed in to change notification settings - Fork 33
/
soloist.gemspec
43 lines (36 loc) · 1.52 KB
/
soloist.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
32
33
34
35
36
37
38
39
40
41
42
43
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "soloist/version"
Gem::Specification.new do |s|
s.name = "soloist"
s.version = Soloist::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matthew Kocher", "Doc Ritezel"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/mkocher/soloist"
s.summary = "Soloist is a simple way of running chef-solo"
s.description = "Makes running chef-solo easy."
s.rubyforge_project = "soloist"
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.license = 'MIT'
# chef 12.9.x and chef-zero 4.6.x dropped support for Ruby 2.0.x, which is
# El Capitan's system ruby. Gem versions are being locked to allow soloist
# to run with system Ruby.
s.add_dependency "chef", "~> 12.8.1"
s.add_dependency "chef-zero", "~> 4.5.0"
s.add_dependency "librarian-chef"
s.add_dependency "thor"
s.add_dependency "hashie", "~> 2.0"
s.add_dependency "net-ssh"
s.add_dependency "awesome_print"
s.add_development_dependency "rspec"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "guard-bundler"
s.add_development_dependency "guard-shell"
s.add_development_dependency "rb-fsevent"
s.add_development_dependency "terminal-notifier-guard"
s.add_development_dependency "gem-release"
end