summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Brown <cb@opscode.com>2009-12-15 15:58:34 -0800
committerChristopher Brown <cb@opscode.com>2009-12-15 15:58:34 -0800
commit6db3a17493f373570cd990ad1a90466c318ccfb6 (patch)
treebf6e9445368c5e894a774d2c9970b380a3dced67
parent6997f7e24cbc0464699354a1c6f2481ec09253b6 (diff)
parent8d06b042ae95e6cdd65983899798de5fc5014141 (diff)
downloadmixlib-cli-6db3a17493f373570cd990ad1a90466c318ccfb6.tar.gz
Merge branch 'CHEF-762'
-rw-r--r--.gitignore1
-rw-r--r--Rakefile2
-rw-r--r--mixlib-cli.gemspec44
3 files changed, 2 insertions, 45 deletions
diff --git a/.gitignore b/.gitignore
index 00c0b86..87c31db 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
*.sw?
.DS_Store
+mixlib-cli.gemspec
coverage
rdoc
pkg
diff --git a/Rakefile b/Rakefile
index 99e4628..7c20d2b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -11,7 +11,7 @@ begin
gem.authors = ["Opscode, Inc."]
end
rescue LoadError
- puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
+ puts "Jeweler (or a dependency) not available. Install from gemcutter with: sudo gem install gemcutter jeweler"
end
require 'spec/rake/spectask'
diff --git a/mixlib-cli.gemspec b/mixlib-cli.gemspec
deleted file mode 100644
index c4c8d52..0000000
--- a/mixlib-cli.gemspec
+++ /dev/null
@@ -1,44 +0,0 @@
-# -*- encoding: utf-8 -*-
-
-Gem::Specification.new do |s|
- s.name = %q{mixlib-cli}
- s.version = "1.0.4"
-
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["Opscode, Inc."]
- s.date = %q{2009-05-12}
- s.email = %q{info@opscode.com}
- s.extra_rdoc_files = [
- "LICENSE",
- "README.rdoc"
- ]
- s.files = [
- "LICENSE",
- "README.rdoc",
- "Rakefile",
- "VERSION.yml",
- "lib/mixlib/cli.rb",
- "spec/mixlib/cli_spec.rb",
- "spec/spec_helper.rb"
- ]
- s.has_rdoc = true
- s.homepage = %q{http://www.opscode.com}
- s.rdoc_options = ["--charset=UTF-8"]
- s.require_paths = ["lib"]
- s.rubygems_version = %q{1.3.2}
- s.summary = %q{A simple mixin for CLI interfaces, including option parsing}
- s.test_files = [
- "spec/mixlib/cli_spec.rb",
- "spec/spec_helper.rb"
- ]
-
- if s.respond_to? :specification_version then
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
- s.specification_version = 3
-
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
- else
- end
- else
- end
-end