toxon
/
lita-tox
Archived
1
0
Fork 0

Correct RuboCop offenses manually

This commit is contained in:
Braiden Vasco 2015-07-25 12:27:06 +05:00
parent 23d8f78001
commit 1ee21273b0
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,5 @@
module Lita module Lita
module Tox module Tox # rubocop:disable Style/Documentation
VERSION = '0.0.0' VERSION = '0.0.0'
end end
end end

View File

@ -14,7 +14,10 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/braiden-vasco/lita-tox' spec.homepage = 'https://github.com/braiden-vasco/lita-tox'
spec.license = 'MIT' spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe' spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib'] spec.require_paths = ['lib']