forked from rodjek/librarian-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrarian-puppet.gemspec
32 lines (26 loc) · 925 Bytes
/
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
$:.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']
s.email = ['[email protected]']
s.homepage = 'https://github.com/rodjek/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.files = [
'.gitignore',
'LICENSE',
'README.md',
] + Dir['{bin,lib,vendor}/**/*']
s.executables = ['librarian-puppet']
s.add_dependency "thor", "~> 0.15"
s.add_dependency "json"
s.add_development_dependency "rake"
s.add_development_dependency "cucumber"
s.add_development_dependency "aruba"
s.add_development_dependency "puppet"
end