-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathvanagon.gemspec
More file actions
44 lines (38 loc) · 1.8 KB
/
vanagon.gemspec
File metadata and controls
44 lines (38 loc) · 1.8 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
35
36
37
38
39
40
41
42
43
44
Gem::Specification.new do |gem|
gem.name = 'vanagon'
gem.version = '1.3.1'
gem.summary = 'Multiplatform build, sign, and ship for Puppet projects'
gem.description = <<-DESCRIPTION
Vanagon takes a set of project, component, and platform configuration files, to perform
multiplatform builds that are packaged into rpms, debs, dmgs, etc.
It has support for calls into Puppet's packaging gem to provide for package signing and
shipping within the Puppet infrastructure.
DESCRIPTION
gem.license = 'Apache-2.0'
gem.authors = ['Puppet By Perforce', 'OpenVoxProject']
gem.email = 'voxpupuli@groups.io'
gem.homepage = 'http://github.com/OpenVoxProject/vanagon'
gem.required_ruby_version = ['>= 3.2', '< 5']
gem.add_dependency('docopt', '~> 0.6.1')
# Handle git repos responsibly
# - MIT licensed: https://rubygems.org/gems/git
gem.add_dependency('git', '>= 3.1', '< 5.0')
# Parse scp-style triplets like URIs; used for Git source handling.
# - MIT licensed: https://rubygems.org/gems/build-uri
gem.add_dependency('build-uri', '~> 1.0')
# Handle locking hardware resources
# - ASL v2 licensed: https://rubygems.org/gems/lock_manager
gem.add_dependency('lock_manager', '~> 0.1.5')
# Utilities for `ship` and `repo` commands
# - ASL v2 licensed: https://rubygems.org/gems/packaging
gem.add_dependency('packaging', '~> 0.122.3')
gem.add_dependency('psych', '>= 4.0', '< 6')
gem.add_dependency('ostruct', '< 0.7')
gem.require_path = 'lib'
gem.bindir = 'bin'
gem.executables = %w[vanagon build inspect ship render repo sign
build_host_info build_requirements]
# Ensure the gem is built out of versioned files
gem.files = Dir['{bin,extras,lib,spec,resources}/**/*', 'README*', 'LICENSE*'] &
%x(git ls-files -z).split("\0")
end