forked from applicationsonline/librarian-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
librarian-chef.gemspec
27 lines (23 loc) · 960 Bytes
/
librarian-chef.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'librarian/chef/version'
Gem::Specification.new do |gem|
gem.name = "librarian-chef"
gem.version = Librarian::Chef::VERSION
gem.authors = ["Jay Feldblum"]
gem.email = ["y_feldblum@yahoo.com"]
gem.description = %q{Librarian::Chef}
gem.summary = %q{Librarian::Chef}
gem.homepage = ""
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "librarian", "~> 0.1.0"
gem.add_dependency "chef", ">= 0.10"
gem.add_dependency "archive-tar-minitar", ">= 0.5.2"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "webmock"
end