You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by tj...@apache.org on 2021/11/18 12:06:07 UTC

[avro] branch branch-1.11 updated: AVRO-3255: Ruby: specify rubygems_mfa_required in gemspec metadata (#1405)

This is an automated email from the ASF dual-hosted git repository.

tjwp pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/branch-1.11 by this push:
     new 0cade25  AVRO-3255: Ruby: specify rubygems_mfa_required in gemspec metadata (#1405)
0cade25 is described below

commit 0cade259473d55e9d6995ac65ba76c6dae0c8030
Author: Tim Perkins <tj...@users.noreply.github.com>
AuthorDate: Wed Nov 17 06:50:59 2021 -0500

    AVRO-3255: Ruby: specify rubygems_mfa_required in gemspec metadata (#1405)
---
 lang/ruby/avro.gemspec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lang/ruby/avro.gemspec b/lang/ruby/avro.gemspec
index 07f4818..e73fc7f 100644
--- a/lang/ruby/avro.gemspec
+++ b/lang/ruby/avro.gemspec
@@ -31,6 +31,7 @@ Gem::Specification.new do |s|
   s.metadata["bug_tracker_uri"] = "https://issues.apache.org/jira/browse/AVRO"
   s.metadata["source_code_uri"] = "https://github.com/apache/avro"
   s.metadata["documentation_uri"] = "https://avro.apache.org/docs/#{s.version}/"
+  s.metadata["rubygems_mfa_required"] = "true"
 
   files = File.read("Manifest").split("\n")
   s.files = files.reject { |f| f.start_with?("test/") }