forked from gds-operations/vcloud-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcloud-core.gemspec
35 lines (29 loc) · 1.38 KB
/
vcloud-core.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
28
29
30
31
32
33
34
35
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'vcloud/core/version'
Gem::Specification.new do |s|
s.name = 'vcloud-core'
s.version = Vcloud::Core::VERSION
s.authors = ['GOV.UK Infrastructure']
s.email = ['vcloud-tools@digital.cabinet-office.gov.uk']
s.summary = 'Core tools for interacting with VMware vCloud Director'
s.description = 'Core tools for interacting with VMware vCloud Director. Includes vCloud Query, a light wrapper round the vCloud Query API.'
s.homepage = 'http://github.com/gds-operations/vcloud-core'
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) {|f| File.basename(f)}
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency 'fog', '>= 1.25.0'
s.add_runtime_dependency 'mustache', '~> 0.99.0'
s.add_runtime_dependency 'highline'
s.add_development_dependency 'gem_publisher', '1.2.0'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 2.14.1'
s.add_development_dependency 'rubocop', '~> 0.23.0'
s.add_development_dependency 'simplecov', '~> 0.7.1'
s.add_development_dependency 'vcloud-tools-tester', '~> 1.0'
end