Sha256: cf82de6f380fda1587540bceab434a2fe98565632b65506b15a5c2b475de69a5
Contents?: true
Size: 828 Bytes
Versions: 15
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.5" 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
15 entries across 15 versions & 1 rubygems