Sha256: 12ced096e3a25923d66c1b7ea775849c3775d09bd1032dab583835f232c335d7
Contents?: true
Size: 854 Bytes
Versions: 1
Compression:
Stored size: 854 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $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 = 'RuboCop configuration for Chef cookbooks' spec.homepage = 'https://github.com/chef/cookstyle' spec.license = 'Apache-2.0' spec.required_ruby_version = '>= 2.4' # 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) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cookstyle-5.8.1 | cookstyle.gemspec |