Sha256: 9dba74d2220841fd1008ca5ff119ccd55c17856199a0dd340a6825b241829616
Contents?: true
Size: 973 Bytes
Versions: 1
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.87.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-codetakt-0.87.0.0 | rubocop-codetakt.gemspec |