Skip to content

Commit

Permalink
Change add_runtime_dependency to add_dependency
Browse files Browse the repository at this point in the history
rubygems/rubygems#7799 says this is how it's
supposed to be done now, and Rubocop enforces it.
  • Loading branch information
creideiki committed Jul 20, 2024
1 parent cfb3756 commit ec87306
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fimfic2pdf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |s|
'bug_tracker_uri' => 'https://github.com/creideiki/fimfic2pdf/issues'
}

s.add_runtime_dependency('httparty', '~> 0.21')
s.add_runtime_dependency('nokogiri', '~> 1.15')
s.add_runtime_dependency('rubyzip', '~> 2.3')
s.add_dependency('httparty', '~> 0.21')
s.add_dependency('nokogiri', '~> 1.15')
s.add_dependency('rubyzip', '~> 2.3')
end

0 comments on commit ec87306

Please sign in to comment.