This repository was archived by the owner on Nov 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvcloud-walker.gemspec
More file actions
34 lines (30 loc) · 1.44 KB
/
vcloud-walker.gemspec
File metadata and controls
34 lines (30 loc) · 1.44 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "vcloud/walker/version"
Gem::Specification.new do |s|
s.name = 'vcloud-walker'
s.version = Vcloud::Walker::VERSION
s.authors = ['Government Digital Service']
s.homepage = 'https://github.com/gds-operations/vcloud-walker'
s.summary = %q{Command line tool to describe vCloud entities}
s.description = %q{Vcloud-walker is a command line tool to describe different vCloud entities.
This tool is a thin layer around fog api, which exposes summarized vCloud entities
in the form of JSON}
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
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 = '>= 2.2.2'
s.add_runtime_dependency 'fog', '>= 1.40.0'
s.add_runtime_dependency 'json', '~> 1.8.0'
s.add_runtime_dependency 'nokogiri', '~> 1.6.8.1'
s.add_runtime_dependency 'vcloud-core', '~> 2.1.0'
s.add_development_dependency 'gem_publisher', '1.2.0'
s.add_development_dependency 'json_spec', '~> 1.1.1'
s.add_development_dependency 'rake', '>= 12'
s.add_development_dependency 'rspec', '>= 3.6'
s.add_development_dependency 'rspec-mocks', '>= 3.6'
s.add_development_dependency 'rubocop', '~> 0.49.1'
s.add_development_dependency 'simplecov', '~> 0.14.1'
end