From 1ee21273b02ef38716befd422cc50f37d8af109b Mon Sep 17 00:00:00 2001 From: Braiden Vasco Date: Sat, 25 Jul 2015 12:27:06 +0500 Subject: [PATCH] Correct RuboCop offenses manually --- lib/lita/tox/version.rb | 2 +- lita-tox.gemspec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/lita/tox/version.rb b/lib/lita/tox/version.rb index 3786e2c..291e337 100644 --- a/lib/lita/tox/version.rb +++ b/lib/lita/tox/version.rb @@ -1,5 +1,5 @@ module Lita - module Tox + module Tox # rubocop:disable Style/Documentation VERSION = '0.0.0' end end diff --git a/lita-tox.gemspec b/lita-tox.gemspec index d941679..1eb48e2 100644 --- a/lita-tox.gemspec +++ b/lita-tox.gemspec @@ -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']