forked from berkshelf/berkshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathberkshelf.gemspec
46 lines (43 loc) · 1.72 KB
/
berkshelf.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
44
45
46
# -*- encoding: utf-8; mode: ruby -*-
require File.expand_path("../lib/berkshelf/version", __FILE__)
Gem::Specification.new do |s|
s.authors = [
"Jamie Winsor",
"Josiah Kiehl",
"Michael Ivey",
"Justin Campbell",
"Seth Vargo",
]
s.email = [
]
s.description = %q{Manages a Cookbook's, or an Application's, Cookbook dependencies}
s.summary = s.description
s.homepage = "http://berkshelf.com"
s.license = "Apache 2.0"
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.name = "berkshelf"
s.require_paths = ["lib"]
s.version = Berkshelf::VERSION
s.required_ruby_version = ">= 2.4.0"
s.required_rubygems_version = ">= 2.0.0"
s.add_dependency "mixlib-shellout", "~> 2.0"
s.add_dependency "cleanroom", "~> 1.0"
s.add_dependency "minitar", ">= 0.6"
s.add_dependency "retryable", "~> 2.0"
s.add_dependency "solve", "~> 4.0"
s.add_dependency "thor", ">= 0.20"
s.add_dependency "octokit", "~> 4.0"
s.add_dependency "mixlib-archive", "~> 0.4"
s.add_dependency "concurrent-ruby", "~> 1.0"
s.add_dependency "chef", ">= 13.6.52"
s.add_dependency "chef-config"
# this is required for Mixlib::Config#from_json
s.add_dependency "mixlib-config", ">= 2.2.5"
end