Sha256: 5638685d5871082dea7065f8e6cd5126c40d7f725de22eabab8c03bd9ccfa6a4

Contents?: true

Size: 973 Bytes

Versions: 2

Compression:

Stored size: 973 Bytes

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rubocop/codetakt/version'

Gem::Specification.new do |spec|
  spec.name          = 'rubocop-codetakt'
  spec.version       = RuboCop::Codetakt::VERSION
  spec.authors       = ['codeTakt Developers']
  spec.email         = ['dev@codetakt.com']

  spec.summary       = 'Unify the coding style of Ruby within codeTakt Inc.'
  spec.description   = <<-DESC
    This includes the RuboCop configuration used by codeTakt. It is
    for the unification and linting of coding styles.
  DESC
  spec.homepage      = 'https://github.com/codetakt/rubocop-codetakt'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_dependency 'rubocop', '~> 0.83.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-codetakt-0.83.0.1 rubocop-codetakt.gemspec
rubocop-codetakt-0.83.0.0 rubocop-codetakt.gemspec