From 1f7734e92f30c0b6545bcc8b537e920e3f12b6bc Mon Sep 17 00:00:00 2001 From: Daniel DeLeo Date: Thu, 1 Dec 2011 11:51:25 -0800 Subject: Initial extraction of ShellOut from Chef --- mixlib-shellout.gemspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mixlib-shellout.gemspec (limited to 'mixlib-shellout.gemspec') 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 -- cgit v1.2.1