-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathmodulesync.gemspec
More file actions
32 lines (27 loc) · 1.33 KB
/
modulesync.gemspec
File metadata and controls
32 lines (27 loc) · 1.33 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'modulesync'
spec.version = '4.2.0'
spec.authors = ['Vox Pupuli']
spec.email = ['voxpupuli@groups.io']
spec.summary = 'Puppet Module Synchronizer'
spec.description = 'Utility to synchronize common files across puppet modules in Github.'
spec.homepage = 'https://github.com/voxpupuli/modulesync'
spec.license = 'Apache-2.0'
spec.required_ruby_version = '>= 3.2.0'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'aruba', '~>2.0'
spec.add_development_dependency 'cucumber', '~> 10.1'
spec.add_development_dependency 'rake', '~> 13.2', '>= 13.2.1'
spec.add_development_dependency 'rspec', '~> 3.13'
spec.add_development_dependency 'voxpupuli-rubocop', '~> 5.2.0'
spec.add_dependency 'git', '>= 3.0', '< 5'
spec.add_dependency 'gitlab', '>=4', '<7'
spec.add_dependency 'octokit', '>=4', '<11'
spec.add_dependency 'puppet-blacksmith', '>= 3.0', '< 10'
spec.add_dependency 'thor', '~> 1.4'
end