forked from theforeman/chef-handler-foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chef_handler_foreman.gemspec
23 lines (20 loc) · 1 KB
/
chef_handler_foreman.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chef_handler_foreman/version'
Gem::Specification.new do |spec|
spec.name = "chef_handler_foreman"
spec.version = ChefHandlerForeman::VERSION
spec.authors = ["Marek Hulan"]
spec.email = ["mhulan@redhat.com"]
spec.description = %q{Chef handlers to integrate with foreman}
spec.summary = %q{This gem adds chef handlers so your chef-client can upload attributes (facts) and reports to Foreman}
spec.homepage = "https://github.com/theforeman/chef-handler-foreman"
spec.license = "MIT"
spec.files = Dir['lib/**/*'] + ['LICENSE.txt', 'README.md', 'Rakefile']
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
end