diff options
author | Seth Vargo <sethvargo@gmail.com> | 2013-05-16 21:56:48 -0400 |
---|---|---|
committer | Seth Vargo <sethvargo@gmail.com> | 2013-05-19 18:08:28 -0500 |
commit | 6ce727adfc508dc0fcd20ec2f8734c8482bcdd7a (patch) | |
tree | f49bbc62498f8b58faa2b06232c5d16b19d691a8 | |
parent | 69870b485dabb44eff2154a80e6fda9a2e6d1b12 (diff) | |
download | chef-zero-6ce727adfc508dc0fcd20ec2f8734c8482bcdd7a.tar.gz |
Fix up gemspec; add puma
-rw-r--r-- | chef-zero.gemspec | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/chef-zero.gemspec b/chef-zero.gemspec index faac7e7..a0517ed 100644 --- a/chef-zero.gemspec +++ b/chef-zero.gemspec @@ -2,25 +2,25 @@ $:.unshift(File.dirname(__FILE__) + '/lib') require 'chef_zero/version' Gem::Specification.new do |s| - s.name = "chef-zero" + s.name = 'chef-zero' s.version = ChefZero::VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true - s.extra_rdoc_files = ["README.rdoc", "LICENSE"] - s.summary = "Self-contained, easy-setup, fast-start in-memory Chef server for testing and solo setup purposes" + s.extra_rdoc_files = ['README.rdoc', 'LICENSE'] + s.summary = 'Self-contained, easy-setup, fast-start in-memory Chef server for testing and solo setup purposes' s.description = s.summary - s.author = "John Keiser" - s.email = "jkeiser@opscode.com" - s.homepage = "http://www.opscode.com" + s.author = 'John Keiser' + s.email = 'jkeiser@opscode.com' + s.homepage = 'http://www.opscode.com' - s.add_dependency 'thin' # webrick DOES NOT FREAKING WORK - s.add_dependency 'mixlib-log', '>= 1.3.0' - s.add_dependency 'solve', '>= 0.4.3' - s.add_dependency 'hashie', '>= 2.0.4' + s.add_dependency 'puma', '~> 2.0' + s.add_dependency 'mixlib-log', '~> 1.3' + s.add_dependency 'solve', '~> 0.4' + s.add_dependency 'hashie', '~> 2.0' - s.bindir = "bin" - s.executables = %w( chef-zero ) + s.bindir = 'bin' + s.executables = ['chef-zero'] s.require_path = 'lib' - s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{lib,spec}/**/*") + s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob('{lib,spec}/**/*') end |