forked from chef/mixlib-install
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmixlib-install.gemspec
More file actions
23 lines (19 loc) · 863 Bytes
/
mixlib-install.gemspec
File metadata and controls
23 lines (19 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "mixlib/install/version"
Gem::Specification.new do |spec|
spec.name = "mixlib-install"
spec.version = Mixlib::Install::VERSION
spec.authors = ["Thom May", "Patrick Wright"]
spec.email = ["thom@chef.io", "patrick@chef.io"]
spec.license = "Apache-2.0"
spec.summary = "A library for interacting with Chef Software Inc's software distribution systems."
spec.homepage = "https://chef.io"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.executables = ["mixlib-install"]
spec.require_paths = ["lib"]
spec.add_dependency "mixlib-shellout"
spec.add_dependency "mixlib-versioning"
spec.add_dependency "thor"
end