-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathknife-spork.gemspec
More file actions
26 lines (22 loc) · 1.28 KB
/
knife-spork.gemspec
File metadata and controls
26 lines (22 loc) · 1.28 KB
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
$:.push File.expand_path('../lib', __FILE__)
require "knife-spork/version"
Gem::Specification.new do |gem|
gem.name = 'knife-spork'
gem.version = KnifeSpork::Version::VERSION
gem.authors = ["Jon Cowie", "Ryn Daniels"]
gem.email = ['jonlives@gmail.com', 'code@ryn.works']
gem.homepage = 'https://github.com/jonlives/knife-spork'
gem.licenses = ['GPL']
gem.summary = "A workflow plugin to help many devs work with the same chef repo/server"
gem.description = "KnifeSpork is a workflow plugin for Chef::Knife which helps multiple developers work on the same Chef Server and repository without treading on each other's toes. This plugin was designed around the workflow used at Etsy, where several people are working on the Chef repository and Chef Server simultaneously."
gem.files = %w{LICENSE} + Dir.glob("lib/**/*")
gem.name = "knife-spork"
gem.require_paths = ["lib"]
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '>= 3.1.0'
gem.add_development_dependency 'chef-zero', '>= 3.2'
gem.add_runtime_dependency 'chef', '>= 11.0.0'
gem.add_runtime_dependency 'git', '>= 1.2.5'
gem.add_runtime_dependency 'app_conf', '>= 0.4.0'
gem.add_runtime_dependency 'diffy', '>= 3.0.1'
end