diff options
author | Daniel DeLeo <dan@opscode.com> | 2011-12-01 11:51:25 -0800 |
---|---|---|
committer | Daniel DeLeo <dan@opscode.com> | 2011-12-01 11:51:25 -0800 |
commit | 1f7734e92f30c0b6545bcc8b537e920e3f12b6bc (patch) | |
tree | 0677cc613ef17454cef35c9ce0ad07f50db28603 /mixlib-shellout.gemspec | |
download | mixlib-shellout-1f7734e92f30c0b6545bcc8b537e920e3f12b6bc.tar.gz |
Initial extraction of ShellOut from Chef
Diffstat (limited to 'mixlib-shellout.gemspec')
-rw-r--r-- | mixlib-shellout.gemspec | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mixlib-shellout.gemspec b/mixlib-shellout.gemspec new file mode 100644 index 0000000..9ca11fd --- /dev/null +++ b/mixlib-shellout.gemspec @@ -0,0 +1,23 @@ +$:.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.has_rdoc = true + 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-core rspec-expectations rspec-mocks).each { |gem| s.add_development_dependency gem } + + s.bindir = "bin" + s.executables = [] + s.require_path = 'lib' + s.files = %w(LICENSE README.rdoc) + Dir.glob("lib/**/*") +end |