Skip to content

Commit a7cb0fb

Browse files
authored
Removed RubyGems MFA (#199)
Signed-off-by: Theo Truong <[email protected]>
1 parent 5b6ed6f commit a7cb0fb

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.rubocop.yml

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ AllCops:
1010
Exclude:
1111
- 'api_generator/**/*'
1212

13+
Gemspec/RequireMFA:
14+
Enabled: false
15+
1316
RSpec/ImplicitExpect:
1417
Enabled: false
1518

opensearch-ruby.gemspec

+5-6
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ require_relative './lib/opensearch/version'
2929
Gem::Specification.new do |s|
3030
s.name = 'opensearch-ruby'
3131
s.version = OpenSearch::VERSION
32-
s.authors = ['Jayesh Hathila', 'Vamshi Vijay Nakkirtha', 'Vijayan Balasubramanian', 'Yuvraj Jaiswal', 'Theo Truong']
33-
32+
s.authors = ['Elastic', 'OpenSearch Contributors']
33+
s.email = 'opensearch@amazon.com'
3434
s.summary = 'Ruby Client for OpenSearch'
3535
s.homepage = 'https://github.com/opensearch-project/opensearch-ruby'
3636
s.license = 'Apache-2.0'
@@ -44,11 +44,10 @@ Gem::Specification.new do |s|
4444
'documentation_uri' => 'https://rubydoc.info/gems/opensearch-ruby',
4545
'source_code_uri' => 'https://github.com/opensearch-project/opensearch-ruby/tree/main',
4646
'bug_tracker_uri' => 'https://github.com/opensearch-project/opensearch-ruby/issues',
47-
'changelog_uri' => 'https://github.com/opensearch-project/opensearch-ruby/blob/main/CHANGELOG.md',
48-
'rubygems_mfa_required' => 'true'
47+
'changelog_uri' => 'https://github.com/opensearch-project/opensearch-ruby/blob/main/CHANGELOG.md'
4948
}
5049

51-
s.files = Dir['lib/**/*']
50+
s.files = Dir['lib/**/*', '*.gemspec']
5251
s.test_files = Dir['spec**/*', 'test/**/*', 'features/**/*']
5352
s.require_paths = ['lib']
5453
s.bindir = 'bin'
@@ -66,5 +65,5 @@ Gem::Specification.new do |s|
6665
s.required_ruby_version = '>= 2.5'
6766

6867
s.add_dependency 'faraday', '>= 1.0', '< 3'
69-
s.add_dependency 'multi_json'
68+
s.add_dependency 'multi_json', '>= 1.0'
7069
end

0 commit comments

Comments
 (0)