-
Notifications
You must be signed in to change notification settings - Fork 12
/
rubocop-checkstyle_formatter.gemspec
27 lines (23 loc) · 1.1 KB
/
rubocop-checkstyle_formatter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
require 'English'
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.6.0'
gem.authors = ['Eito Katagiri']
gem.email = ['[email protected]']
gem.description = 'A formatter for rubocop that outputs in checkstyle format'
gem.summary = '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($INPUT_RECORD_SEPARATOR)
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', '>= 1.14.0'
gem.add_development_dependency 'appraisal', '~> 2.4.1'
gem.add_development_dependency 'bundler', '>= 2.2.10'
gem.add_development_dependency 'rake', '>= 12.3.3'
gem.add_development_dependency 'rspec', '~> 3.5.0'
end