summaryrefslogtreecommitdiff
path: root/mixlib-shellout.gemspec
blob: dbb4c3d34dfbeab43f0954b16c40d32147efe69c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$:.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.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://github.com/chef/mixlib-shellout"

  s.required_ruby_version = ">= 2.4"

  s.add_dependency "chef-utils"
  s.require_path = "lib"
  s.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
end