forked from mat128/vagrant-openstack-cloud-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvagrant-openstack-cloud-provider.gemspec
27 lines (23 loc) · 1.08 KB
/
vagrant-openstack-cloud-provider.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-openstack-cloud-provider/version'
Gem::Specification.new do |gem|
gem.name = "vagrant-openstack-cloud-provider"
gem.version = VagrantPlugins::OpenStack::VERSION
gem.licenses = ['MIT']
gem.authors = ["Mathieu Mitchell"]
gem.email = ["[email protected]"]
gem.description = "Vagrant provider for OpenStack clouds."
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_runtime_dependency "fog-core", "~> 1.43.0"
gem.add_runtime_dependency "promise", "~> 0.3.1"
gem.add_development_dependency "rake", '< 11.0'
gem.add_development_dependency "rspec", "~> 3.5.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