Sha256: cd8ac8178e5c225cee4e9918c7b6dfad9d013a3a105a40ec5c3c1c2e96e7750c

Contents?: true

Size: 932 Bytes

Versions: 4

Compression:

Stored size: 932 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "chefstyle"
  spec.version       = Chefstyle::VERSION
  spec.authors       = ["Thom May"]
  spec.email         = ["thom@chef.io"]

  spec.summary       = %q{Rubocop configuration for Chef's ruby projects}
  spec.homepage      = "https://github.com/chef/chefstyle"
  spec.license       = "Apache-2.0"
  spec.required_ruby_version = ">= 2.0.0"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.executables    = %w[chefstyle]
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"
  spec.add_dependency("rubocop", Chefstyle::RUBOCOP_VERSION)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
chefstyle-0.4.0 chefstyle.gemspec
chefstyle-0.3.1 chefstyle.gemspec
chefstyle-0.3.0 chefstyle.gemspec
chefstyle-0.1.0 chefstyle.gemspec