From d10e52ed0726237109cb3f45879b27d9961c816d Mon Sep 17 00:00:00 2001 From: Rafael Date: Mon, 24 Jul 2023 18:50:53 -0300 Subject: [PATCH] :fire: Remove MFA requirement This requirement prevents us from deploying the gem through a GA workflow, which defeats its point. --- clock-limiter.gemspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clock-limiter.gemspec b/clock-limiter.gemspec index 3de5996..be533db 100644 --- a/clock-limiter.gemspec +++ b/clock-limiter.gemspec @@ -2,7 +2,7 @@ require_relative 'lib/clock/limiter/version' -Gem::Specification.new do |spec| +Gem::Specification.new do |spec| # rubocop:disable Gemspec/RequireMFA because we want to deploy this through the GitHub Actions workflow spec.name = 'clock-limiter' spec.version = Clock::Limiter::VERSION spec.authors = ['Rafael Baldasso Audibert'] @@ -25,5 +25,4 @@ Gem::Specification.new do |spec| spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.metadata['rubygems_mfa_required'] = 'true' end