Sha256: ddfc9ff84faca7d6edbb520d0b72f7b1c78d7b6a0c722e2f9b7f625f166b7228
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'berkshelf/vagrant/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.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.add_dependency 'berkshelf', '>= 3.0.0.beta7' spec.add_development_dependency 'spork', '~> 0.9' spec.add_development_dependency 'rspec', '~> 2.13' spec.add_development_dependency 'thor', '~> 0.18' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-berkshelf-2.0.0.rc1 | vagrant-berkshelf.gemspec |