forked from rodjek/librarian-puppet
-
Notifications
You must be signed in to change notification settings - Fork 38
/
librarian-puppet.gemspec
41 lines (34 loc) · 1.35 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
$:.push File.expand_path("../lib", __FILE__)
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", ">=0.6.3"
s.add_dependency "rsync"
s.add_dependency "puppet_forge", ">= 2", '< 6'
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "cucumber", "<9.0.0"
s.add_development_dependency "aruba", ">= 1.0", "< 3"
s.add_development_dependency "puppet", ENV["PUPPET_VERSION"]
s.add_development_dependency "minitest", "~> 5"
s.add_development_dependency "mocha", "<2.0.0"
s.add_development_dependency "simplecov", ">= 0.9.0"
s.add_development_dependency "concurrent-ruby", "< 1.2"
end