-
Notifications
You must be signed in to change notification settings - Fork 4
/
chef_metal_ssh.gemspec
29 lines (25 loc) · 1.04 KB
/
chef_metal_ssh.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chef_metal_ssh/version'
Gem::Specification.new do |s|
s.name = "chef-metal-ssh"
s.version = ChefMetalSsh::VERSION
s.platform = Gem::Platform::RUBY
s.author = "Zack Zondlo"
s.email = "[email protected]"
s.extra_rdoc_files = ['README.md', 'LICENSE.txt' ]
s.summary = 'Provisioner for managing servers using ssh in Chef Metal.'
s.description = s.summary
s.homepage = 'https://github.com/double-z/chef-metal-ssh'
s.require_path = "lib"
s.bindir = "bin"
s.executables = %w( )
s.files = %w(Rakefile LICENSE.txt README.md) + Dir.glob("{distro,lib,tasks,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
s.add_dependency 'chef'
#s.add_dependency 'chef-metal', '~> 0.12'
s.add_dependency 'chef-provisioning', '~> 0.17'
s.add_development_dependency "bundler", "~> 1.5"
s.add_development_dependency "rspec"
s.add_development_dependency "rake"
end