Sha256: fd28f1a59540678a0bb56ae49b0b3eb8eeccb2ccceb0366ecc7907688edc0dab
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vagrant-orchestrate/version' Gem::Specification.new do |spec| spec.name = 'vagrant-orchestrate' spec.version = VagrantPlugins::Orchestrate::VERSION spec.authors = ['Christopher Baldauf'] spec.email = ['cbaldauf@cimpress.com'] spec.summary = 'Vagrant plugin to orchestrate the deployment of managed servers.' spec.homepage = '' spec.license = 'Apache 2.0' spec.files = `git ls-files -z`.split("\x0") 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.add_development_dependency 'bundler', '~> 1.6' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rubocop', '~> 0.28' # See Gemfile for additional development dependencies that were not available # on rubygems (or another gem source), but needed to be downloaded from git. end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-orchestrate-0.0.3 | vagrant-orchestrate.gemspec |