-
Notifications
You must be signed in to change notification settings - Fork 9
/
chef_fixie.gemspec
29 lines (26 loc) · 1.14 KB
/
chef_fixie.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_fixie/version"
Gem::Specification.new do |spec|
spec.name = "chef_fixie"
spec.version = ChefFixie::VERSION
spec.authors = ["Mark Anderson"]
spec.email = ["[email protected]"]
spec.description = %q{Low level manipulation tool for Chef Infra Server}
spec.summary = spec.description
spec.licenses = "Apache-2.0"
spec.homepage = "https://github.com/chef/fixie"
spec.files = %w{LICENSE README.md fixie.conf.example} + Dir.glob("{bin,doc,lib,spec}/**/*")
spec.bindir = "bin"
spec.executables = "chef_fixie"
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "chef", ">= 16"
spec.add_runtime_dependency "ffi-yajl", ">= 1.2.0"
spec.add_runtime_dependency "pg", "~> 1.2", ">= 1.2.3"
spec.add_runtime_dependency "pry", "~> 0.13"
spec.add_runtime_dependency "sequel", ">= 4.11"
spec.add_runtime_dependency "uuidtools", "~> 2.1", ">= 2.1.3"
spec.add_runtime_dependency "veil"
end