vagrant-berkshelf.gemspec in vagrant-berkshelf-3.0.1 vs vagrant-berkshelf.gemspec in vagrant-berkshelf-4.0.0
- old
+ new
@@ -1,30 +1,42 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
-require 'berkshelf/vagrant/version'
+require 'vagrant-berkshelf/version'
Gem::Specification.new do |spec|
- spec.name = 'vagrant-berkshelf'
- spec.version = Berkshelf::Vagrant::VERSION
- spec.authors = [ 'Jamie Winsor', 'Michael Ivey' ]
- spec.email = [ 'jamie@vialstudios.com', 'michael.ivey@riotgames.com' ]
- spec.description = %q{A Vagrant plugin to add Berkshelf integration to the Chef provisioners}
- spec.summary = spec.description
- spec.homepage = 'http://berkshelf.com'
- spec.license = 'Apache 2.0'
+ spec.name = 'vagrant-berkshelf'
+ spec.version = VagrantPlugins::Berkshelf::VERSION
+ spec.authors = [
+ 'Jamie Winsor',
+ 'Michael Ivey',
+ 'Seth Vargo',
+ ]
+ spec.email = [
+ 'jamie@vialstudios.com',
+ 'michael.ivey@riotgames.com',
+ 'sethvargo@gmail.com',
+ ]
+ spec.description = %q{A Vagrant plugin to add Berkshelf integration to the Chef provisioners}
+ spec.summary = spec.description
+ spec.homepage = 'https://berkshelf.com'
+ spec.license = 'Apache 2.0'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
- spec.required_ruby_version = '>= 1.9.1'
+ spec.required_ruby_version = '>= 1.9.3'
- spec.post_install_message = "In order to use the Vagrant-Berkshelf plugin, you must have ChefDK installed.\n" +
- "To download the latest ChefDK visit http://getchef.com/downloads/chef-dk."
+ spec.post_install_message = <<-EOH
+The Vagrant Berkshelf plugin requires Berkshelf from the Chef Development Kit.
+You can download the latest version of the Chef Development Kit from:
- spec.add_dependency "buff-shell_out"
+ https://downloads.getchef.com/chef-dk
+Installing Berkshelf via other methods is not officially supported.
+EOH
+
spec.add_development_dependency 'spork', '~> 0.9'
spec.add_development_dependency 'rspec', '~> 2.13'
- spec.add_development_dependency 'thor', '~> 0.18'
+ spec.add_development_dependency 'rake'
end