Sha256: 47931ce9f93cb386ea806c392b6f0e1370b21d32db93eef3a0eac019eb935f5b
Contents?: true
Size: 959 Bytes
Versions: 1
Compression:
Stored size: 959 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vagrant-openstack/version' Gem::Specification.new do |gem| gem.name = "openstack-vagrant" gem.version = VagrantPlugins::OpenStack::VERSION gem.authors = ["Mitchell Hashimoto"] gem.email = ["mitchell@hashicorp.com"] gem.description = "Enables Vagrant to manage machines in OpenStack Cloud." gem.summary = "Enables Vagrant to manage machines in OpenStack Cloud." gem.homepage = "http://www.vagrantup.com" gem.add_runtime_dependency "fog", "~> 1.22" gem.add_development_dependency "rake" gem.add_development_dependency "rspec", "~> 2.13.0" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openstack-vagrant-1.1.2 | openstack-vagrant.gemspec |