Sha256: bbd299ae3f618c67a9f4982eaeee05035de90ab7c957181ec1ab62e246e1f62b
Contents?: true
Size: 828 Bytes
Versions: 18
Compression:
Stored size: 828 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path("lib", __dir__) $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.4" spec.files = %w{LICENSE chefstyle.gemspec} + Dir.glob("{bin,config,lib}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } spec.executables = %w{chefstyle} spec.require_paths = ["lib"] spec.add_dependency("rubocop", Chefstyle::RUBOCOP_VERSION) end
Version data entries
18 entries across 18 versions & 1 rubygems