-
Notifications
You must be signed in to change notification settings - Fork 0
/
berktacular.gemspec
30 lines (26 loc) · 1.29 KB
/
berktacular.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
30
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'berktacular/version'
spec = Gem::Specification.new do |s|
s.name = 'berktacular'
s.version = Berktacular::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'Parse chef env files, generates a Berksfile and verifies it.'
s.description = "Generates a Berksfile from JSON style Chef environment files. Also support extension to environment file with 'cookbook_locations'. " +
"Verifies the Berksfile is consistent (all dependencies met) and will upload updated cookbooks and env files to a chef server."
s.authors = ['Jeff Harvey-Smith']
s.email = ['jeff@clearstorydata.com']
s.required_ruby_version = '>= 1.9'
s.add_dependency 'solve', '~> 1.2'
s.add_dependency 'ridley', '~> 4.0'
s.add_dependency 'faraday', '~> 0.9'
s.add_dependency 'octokit', '~> 3.0', '>= 3.0.0'
s.add_dependency 'hashie', '~> 2.1'
s.add_dependency 'berkshelf', '~> 3.1'
s.add_development_dependency 'yard', '~> 0.8'
s.add_development_dependency 'minitest', '~> 5.3'
s.files = Dir["{bin,lib}/**/*"] + ['VERSION']
s.executables << 'berktacular'
s.homepage = 'https://rubygems.org/gems/berktacular'
s.licenses = ['Apache License, Version 2.0']
end