forked from mitchellh/vagrant-rackspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvagrant-openstack-plugin.gemspec
More file actions
24 lines (20 loc) · 972 Bytes
/
vagrant-openstack-plugin.gemspec
File metadata and controls
24 lines (20 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-openstack-plugin/version'
Gem::Specification.new do |gem|
gem.name = "vagrant-openstack-plugin"
gem.version = VagrantPlugins::OpenStack::VERSION
gem.authors = ["Edmund Haselwanter"]
gem.email = ["me@ehaselwanter.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.16.0"
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