Sha256: a520a1328dbcc616c065c00fe0b5b3fc4cb31bd1f1ee25822c2b4609fdd547b8

Contents?: true

Size: 1.45 KB

Versions: 2

Compression:

Stored size: 1.45 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chef/sugar/version'

Gem::Specification.new do |spec|
  spec.name          = 'chef-sugar'
  spec.version       = Chef::Sugar::VERSION
  spec.authors       = ['Seth Vargo']
  spec.email         = ['sethvargo@gmail.com']
  spec.description   = 'A series of helpful sugar of the Chef core and ' \
                       'other resources to make a cleaner, more lean recipe ' \
                       'DSL, enforce DRY principles, and make writing Chef '  \
                       'recipes an awesome experience!'
  spec.summary       = 'A collection of helper methods and modules that '     \
                       'make working with Chef recipes awesome.'
  spec.homepage      = 'https://github.com/sethvargo/chef-sugar'
  spec.license       = 'Apache 2.0'

  spec.required_ruby_version = '>= 2.1'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'rack', '~> 1.6'
  spec.add_development_dependency 'rake'

  spec.add_development_dependency 'chefspec',        '~> 4.2'
  spec.add_development_dependency 'test-kitchen',    '~> 1.3'
  spec.add_development_dependency 'kitchen-vagrant', '~> 0.15'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
chef-sugar-3.6.0 chef-sugar.gemspec
chef-sugar-3.5.0 chef-sugar.gemspec