Sha256: b70540079262b45010823d150bd64a1eace6126f6d9db2e929a867deb934c4ef

Contents?: true

Size: 870 Bytes

Versions: 1

Compression:

Stored size: 870 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |gem|
  gem.name          = 'rubocop-checkstyle_formatter'
  gem.version       = '0.0.3'
  gem.authors       = ['Eito Katagiri']
  gem.email         = ['eitoball@gmail.com']
  gem.description   = %q{A formatter for rubocop that outputs in checkstyle format}
  gem.summary       = %q{A formatter for rubocop that outputs in checkstyle format}
  gem.homepage      = 'https://github.com/eitoball/rubocop-checkstyle_formatter'
  gem.license       = 'MIT'

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ['lib']

  gem.add_dependency 'rubocop', '>= 0.9.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-checkstyle_formatter-0.0.3 rubocop-checkstyle_formatter.gemspec