Correct RuboCop offenses manually
This commit is contained in:
parent
23d8f78001
commit
1ee21273b0
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
module Lita
|
||||
module Tox
|
||||
module Tox # rubocop:disable Style/Documentation
|
||||
VERSION = '0.0.0'
|
||||
end
|
||||
end
|
||||
|
|
|
@ -14,7 +14,10 @@ Gem::Specification.new do |spec|
|
|||
spec.homepage = 'https://github.com/braiden-vasco/lita-tox'
|
||||
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.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||
spec.require_paths = ['lib']
|
||||
|
|
Reference in a new issue