From f3e35d6a6b22250f4e49a06cf3fb0f369025eaf5 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Sun, 7 Apr 2024 10:00:06 +0200 Subject: [PATCH] Opt-in for MFA requirement Make the gem more secure by requiring that all privileged operations by any of the owners require OTP. Ref: https://guides.rubygems.org/mfa-requirement-opt-in/ --- css_parser.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/css_parser.gemspec b/css_parser.gemspec index c3225bc..f3a12d8 100644 --- a/css_parser.gemspec +++ b/css_parser.gemspec @@ -16,6 +16,7 @@ Gem::Specification.new name, CssParser::VERSION do |s| s.metadata['changelog_uri'] = 'https://github.com/premailer/css_parser/blob/master/CHANGELOG.md' s.metadata['source_code_uri'] = 'https://github.com/premailer/css_parser' s.metadata['bug_tracker_uri'] = 'https://github.com/premailer/css_parser/issues' + s.metadata['rubygems_mfa_required'] = 'true' s.add_runtime_dependency 'addressable'