Skip to content

Commit

Permalink
Removed RubyGems MFA (#199)
Browse files Browse the repository at this point in the history
Signed-off-by: Theo Truong <[email protected]>
  • Loading branch information
nhtruong authored Sep 15, 2023
1 parent 5b6ed6f commit a7cb0fb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ AllCops:
Exclude:
- 'api_generator/**/*'

Gemspec/RequireMFA:
Enabled: false

RSpec/ImplicitExpect:
Enabled: false

Expand Down
11 changes: 5 additions & 6 deletions opensearch-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ require_relative './lib/opensearch/version'
Gem::Specification.new do |s|
s.name = 'opensearch-ruby'
s.version = OpenSearch::VERSION
s.authors = ['Jayesh Hathila', 'Vamshi Vijay Nakkirtha', 'Vijayan Balasubramanian', 'Yuvraj Jaiswal', 'Theo Truong']
s.email = %w[jayehh@amazon.com [email protected] [email protected] [email protected] [email protected]]
s.authors = ['Elastic', 'OpenSearch Contributors']
s.email = 'opensearch@amazon.com'
s.summary = 'Ruby Client for OpenSearch'
s.homepage = 'https://github.com/opensearch-project/opensearch-ruby'
s.license = 'Apache-2.0'
Expand All @@ -44,11 +44,10 @@ Gem::Specification.new do |s|
'documentation_uri' => 'https://rubydoc.info/gems/opensearch-ruby',
'source_code_uri' => 'https://github.com/opensearch-project/opensearch-ruby/tree/main',
'bug_tracker_uri' => 'https://github.com/opensearch-project/opensearch-ruby/issues',
'changelog_uri' => 'https://github.com/opensearch-project/opensearch-ruby/blob/main/CHANGELOG.md',
'rubygems_mfa_required' => 'true'
'changelog_uri' => 'https://github.com/opensearch-project/opensearch-ruby/blob/main/CHANGELOG.md'
}

s.files = Dir['lib/**/*']
s.files = Dir['lib/**/*', '*.gemspec']
s.test_files = Dir['spec**/*', 'test/**/*', 'features/**/*']
s.require_paths = ['lib']
s.bindir = 'bin'
Expand All @@ -66,5 +65,5 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 2.5'

s.add_dependency 'faraday', '>= 1.0', '< 3'
s.add_dependency 'multi_json'
s.add_dependency 'multi_json', '>= 1.0'
end

0 comments on commit a7cb0fb

Please sign in to comment.