Sha256: d4a9fd4f46adec043f0ee787984af579a824d0789ddb4ffd045fc627dbcb7143

Contents?: true

Size: 964 Bytes

Versions: 7

Compression:

Stored size: 964 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       = ["Chef Software, Inc."]
  spec.email         = ["oss@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.3"

  spec.files = %w{LICENSE chefstyle.gemspec Gemfile} + Dir.glob("{bin,config,lib}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
  spec.executables = %w{chefstyle}
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake", ">= 12.0"
  spec.add_development_dependency "rspec"
  spec.add_dependency("rubocop", Chefstyle::RUBOCOP_VERSION)
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chefstyle-0.15.1 chefstyle.gemspec
chefstyle-0.14.1 chefstyle.gemspec
chefstyle-0.14.0 chefstyle.gemspec
chefstyle-0.13.3 chefstyle.gemspec
chefstyle-0.13.2 chefstyle.gemspec
chefstyle-0.13.0 chefstyle.gemspec
chefstyle-0.12.0 chefstyle.gemspec