blob: 71e1a24f16240e2cb6a14e9dba027c50c5616a3b (
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
26
|
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'mixlib/cli/version'
Gem::Specification.new do |s|
s.name = "mixlib-cli"
s.version = Mixlib::CLI::VERSION
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = ["README.rdoc", "LICENSE", 'NOTICE']
s.summary = "A simple mixin for CLI interfaces, including option parsing"
s.description = s.summary
s.author = "Opscode, Inc."
s.email = "info@opscode.com"
s.homepage = "http://www.opscode.com"
# Uncomment this to add a dependency
#s.add_dependency "mixlib-log"
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 2.14'
s.add_development_dependency 'rdoc'
s.require_path = 'lib'
s.files = %w(LICENSE README.rdoc Gemfile Rakefile NOTICE) + Dir.glob("*.gemspec") +
Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
end
|