forked from bloomberg-cookbooks/poise-service-aix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoise-service-aix.gemspec
37 lines (31 loc) · 1.23 KB
/
poise-service-aix.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
36
37
#
# Cookbook: poise-service-aix
# License: Apache 2.0
#
# Copyright 2015, Noah Kantrowitz
# Copyright 2015-2017, Bloomberg Finance L.P.
#
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'poise_service/aix/version'
Gem::Specification.new do |spec|
spec.name = 'poise-service-aix'
spec.version = PoiseService::AIX::VERSION
spec.authors = ['Bloomberg Infrastructure Engineering']
spec.email = %w(chef@bloomberg.net)
spec.description = 'An AIX provider for poise-service.'
spec.summary = spec.description
spec.homepage = 'https://github.com/bloomberg-cookbooks/poise-service-aix'
spec.license = 'Apache-2.0'
spec.files = `git ls-files`.split($RS)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w(lib)
spec.add_dependency 'chef', '>= 12.2', '< 14'
spec.add_dependency 'halite', '~> 1.0'
spec.add_development_dependency 'chef-dk', '>= 0.10', '< 3'
spec.add_development_dependency 'kitchen-inspec', '~> 0.12'
spec.add_development_dependency 'poise-boiler', '~> 1.8'
spec.metadata['platforms'] = 'aix'
spec.metadata['halite_dependencies'] = 'aix ~> 1.0'
end