Sha256: 676b69f98de5b46d0b5df57c5ba47dc80e48751d6115c9020fe3dd298b3a4959

Contents?: true

Size: 1.45 KB

Versions: 5

Compression:

Stored size: 1.45 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          = "berkshelf-vagrant"
  spec.version       = Berkshelf::Vagrant::VERSION
  spec.authors       = [ "Jamie Winsor" ]
  spec.email         = [ "reset@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', '>= 1.3.0'
  # activesupport 3.2.13 contains an incompatible hard lock on i18n (= 0.6.1)
  spec.add_dependency 'activesupport', '>= 3.2.0', '< 3.2.13'

  # Explicit locks to ensure we activate the proper gem versions for Vagrant
  spec.add_dependency "i18n", "~> 0.6.0"
  spec.add_dependency "json", ">= 1.5.1", "< 1.8.0"
  spec.add_dependency "net-ssh", "~> 2.6.6"
  spec.add_dependency "net-scp", "~> 1.1.0"

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'spork'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'thor'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
berkshelf-vagrant-1.1.2 berkshelf-vagrant.gemspec
berkshelf-vagrant-1.1.0 berkshelf-vagrant.gemspec
berkshelf-vagrant-1.0.6 berkshelf-vagrant.gemspec
berkshelf-vagrant-1.0.4 berkshelf-vagrant.gemspec
berkshelf-vagrant-1.0.3 berkshelf-vagrant.gemspec