diff options
| author | Zsolt Kozaroczy <[email protected]> | 2023-10-19 10:15:01 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-19 10:15:01 +0200 |
| commit | e15ceb41bbcbdbeed33e304101cc66114ef1cf7d (patch) | |
| tree | 890b55258b3a781d644caffba714769e06d94a58 | |
| parent | 52912ca8ac772144e2fb7b868301a5846b9ee39d (diff) | |
| parent | 2d8c6f6b5fbdff7cbc0f4ffd2801b9530f1a2143 (diff) | |
| download | caxlsx-e15ceb41bbcbdbeed33e304101cc66114ef1cf7d.tar.gz caxlsx-e15ceb41bbcbdbeed33e304101cc66114ef1cf7d.zip | |
Merge pull request #197 from tagliala/security/opt-in-for-mfa-requirement
Opt-in for MFA requirement
| -rw-r--r-- | .rubocop_todo.yml | 7 | ||||
| -rw-r--r-- | axlsx.gemspec | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 8b7efed6..16d5bcb6 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -7,13 +7,6 @@ # versions of RuboCop, may require this file to be generated again. # This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: Severity, Include. -# Include: **/*.gemspec -Gemspec/RequireMFA: - Exclude: - - 'axlsx.gemspec' - -# This cop supports safe autocorrection (--autocorrect). # Configuration parameters: IndentationWidth. # SupportedStyles: special_inside_parentheses, consistent, align_braces Layout/FirstHashElementIndentation: diff --git a/axlsx.gemspec b/axlsx.gemspec index bf9c0942..7951b416 100644 --- a/axlsx.gemspec +++ b/axlsx.gemspec @@ -16,6 +16,8 @@ Gem::Specification.new do |s| MSG s.files = Dir.glob("{lib/**/*,examples/**/*.rb,examples/**/*.jpeg}") + %w{LICENSE README.md Rakefile CHANGELOG.md .yardopts .yardopts_guide} + s.metadata = { 'rubygems_mfa_required' => 'true' } + s.add_runtime_dependency "htmlentities", "~> 4.3", '>= 4.3.4' s.add_runtime_dependency "marcel", '~> 1.0' s.add_runtime_dependency 'nokogiri', '~> 1.10', '>= 1.10.4' |
