Sha256: 44d6665c329b70af237adb3e1e4f892ba077093c58a37bc068789991ca5cc57a

Contents?: true

Size: 1.35 KB

Versions: 19

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cookstyle/version'

Gem::Specification.new do |spec|
  spec.name          = 'cookstyle'
  spec.version       = Cookstyle::VERSION
  spec.authors       = ['Thom May', 'Tim Smith']
  spec.email         = ['thom@chef.io', 'tsmith@chef.io']
  spec.summary       = 'Cookstyle is a code linting tool that helps you to write better Chef Infra cookbooks by detecting and automatically correcting style, syntax, and logic mistakes in your code.'
  spec.license       = 'Apache-2.0'
  spec.homepage      = 'https://docs.chef.io/workstation/cookstyle/'
  spec.required_ruby_version = '>= 2.5'

  # the gemspec and Gemfile are necessary for appbundling of the gem
  spec.files = %w(LICENSE cookstyle.gemspec Gemfile) + Dir.glob('{lib,bin,config}/**/*')
  spec.executables = %w(cookstyle)
  spec.require_paths = ['lib']

  spec.add_dependency('rubocop', Cookstyle::RUBOCOP_VERSION)

  spec.metadata = {
    'homepage_uri' => 'https://github.com/chef/cookstyle',
    'changelog_uri' => 'https://github.com/chef/cookstyle/blob/master/CHANGELOG.md',
    'source_code_uri' => 'https://github.com/chef/cookstyle',
    'documentation_uri' => 'https://docs.chef.io/workstation/cookstyle/',
    'bug_tracker_uri' => 'https://github.com/chef/cookstyle/issues',
  }
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
cookstyle-7.21.0 cookstyle.gemspec
cookstyle-7.20.0 cookstyle.gemspec
cookstyle-7.19.0 cookstyle.gemspec
cookstyle-7.18.0 cookstyle.gemspec
cookstyle-7.17.0 cookstyle.gemspec
cookstyle-7.16.1 cookstyle.gemspec
cookstyle-7.15.4 cookstyle.gemspec
cookstyle-7.15.3 cookstyle.gemspec
cookstyle-7.15.2 cookstyle.gemspec
cookstyle-7.15.1 cookstyle.gemspec
cookstyle-7.15.0 cookstyle.gemspec
cookstyle-7.14.2 cookstyle.gemspec
cookstyle-7.13.0 cookstyle.gemspec
cookstyle-7.12.6 cookstyle.gemspec
cookstyle-7.12.5 cookstyle.gemspec
cookstyle-7.12.3 cookstyle.gemspec
cookstyle-7.12.2 cookstyle.gemspec
cookstyle-7.11.3 cookstyle.gemspec
cookstyle-7.11.1 cookstyle.gemspec