forked from rodjek/librarian-puppet
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathlibrarian-puppet.gemspec
44 lines (36 loc) · 1.46 KB
/
librarian-puppet.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
38
39
40
41
42
43
44
# frozen_string_literal: true
$:.push File.expand_path('lib', __dir__)
require 'librarian/puppet/version'
Gem::Specification.new do |s|
s.name = 'librarian-puppet'
s.version = Librarian::Puppet::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Tim Sharpe', 'Carlos Sanchez']
s.license = 'MIT'
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/voxpupuli/librarian-puppet'
s.summary = 'Bundler for your Puppet modules'
s.description = 'Simplify deployment of your Puppet infrastructure by
automatically pulling in modules from the forge and git repositories with
a single command.'
s.required_ruby_version = '>= 2.7', '< 4'
s.files = [
'.gitignore',
'LICENSE',
'README.md',
] + Dir['{bin,lib}/**/*']
s.executables = ['librarian-puppet']
s.add_dependency 'librarianp', '~> 1.1'
s.add_dependency 'puppet_forge', '>= 2', '< 7'
s.add_dependency 'rsync', '~> 1.0'
s.add_development_dependency 'aruba', '>= 1.0', '< 3'
s.add_development_dependency 'concurrent-ruby', '~> 1.3'
s.add_development_dependency 'cucumber', '~> 9.2'
s.add_development_dependency 'minitest', '~> 5'
s.add_development_dependency 'mocha', '~> 2.7'
s.add_development_dependency 'puppet', '>= 7', '< 9'
s.add_development_dependency 'rake', '~> 13.2'
s.add_development_dependency 'rspec', '~> 3.13'
s.add_development_dependency 'simplecov', '~> 0.22.0'
s.add_development_dependency 'voxpupuli-rubocop', '~> 3.0.0'
end