blob: bbbe0df0a4f6d458a79740e686ce55e50ddb88aa (
plain)
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
|
$:.unshift(File.dirname(__FILE__) + "/lib")
require "mixlib/shellout/version"
Gem::Specification.new do |s|
s.name = "mixlib-shellout"
s.version = Mixlib::ShellOut::VERSION
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = ["README.md", "LICENSE" ]
s.summary = "Run external commands on Unix or Windows"
s.description = s.summary
s.author = "Chef Software Inc."
s.email = "info@chef.io"
s.homepage = "https://www.chef.io/"
s.required_ruby_version = ">= 2.2"
s.add_development_dependency "rspec", "~> 3.0"
s.add_development_dependency "chefstyle"
s.bindir = "bin"
s.executables = []
s.require_path = "lib"
s.files = %w{Gemfile Rakefile LICENSE README.md} + Dir.glob("*.gemspec") +
Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
end
|