summaryrefslogtreecommitdiff
path: root/mixlib-shellout.gemspec
blob: cf72f12dd0d87b5a02d109753477dc3d6464056e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.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 = "Opscode"
  s.email = "info@opscode.com"
  s.homepage = "http://wiki.opscode.com/"


  %w(rspec).each { |gem| s.add_development_dependency gem }

  s.bindir       = "bin"
  s.executables  = []
  s.require_path = 'lib'
  s.files = %w(LICENSE README.md) + Dir.glob("lib/**/*")
end