Sha256: 19a06323ef534aa783098f1802a170f64c5d6ac0f9ae5ffc346ca5a52ea37bdd

Contents?: true

Size: 972 Bytes

Versions: 1

Compression:

Stored size: 972 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', '~> 1.2.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-codetakt-1.2.0.0 rubocop-codetakt.gemspec