Sha256: 36de2dca33d470137f040de35bceb1f3bbf7d6e8e0b9829401638d02ba56401e
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 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 = "https://github.com/Cimpress-MCP/vagrant-orchestrate" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-orchestrate-0.6.5 | vagrant-orchestrate.gemspec |
vagrant-orchestrate-0.6.3 | vagrant-orchestrate.gemspec |