diff --git a/.rubocop.yml b/.rubocop.yml index 1eed7f2..c677437 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -11,6 +11,9 @@ AllCops: Bundler/OrderedGems: Enabled: false +Gemspec/RequireMFA: + Enabled: false + Layout/EmptyLineBetweenDefs: Enabled: true AllowAdjacentOneLineDefs: true diff --git a/itax_code.gemspec b/itax_code.gemspec index 13e1cc3..ce4d999 100644 --- a/itax_code.gemspec +++ b/itax_code.gemspec @@ -25,5 +25,5 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "activesupport" - spec.metadata["rubygems_mfa_required"] = "true" + spec.metadata["rubygems_mfa_required"] = "false" end