Update Gemfile.

This commit is contained in:
邱博亞 2024-06-17 08:05:21 +08:00
parent 947c68669d
commit 7917c8a2f3
1 changed files with 2 additions and 1 deletions

View File

@ -179,7 +179,6 @@ else
# gem 'declarative' # gem 'declarative'
gem 'mime-types' gem 'mime-types'
gem 'mimemagic' gem 'mimemagic'
gem 'public_suffix'
gem "connection_pool" gem "connection_pool"
#social gems #social gems
gem 'phantomjs','2.1.1.0' gem 'phantomjs','2.1.1.0'
@ -211,9 +210,11 @@ else
gem 'rss' gem 'rss'
#parser #parser
if RUBY_VERSION.to_f >= 3.0 if RUBY_VERSION.to_f >= 3.0
gem 'public_suffix'
gem 'nokogiri', '~> 1.16', '>= 1.16.2' gem 'nokogiri', '~> 1.16', '>= 1.16.2'
gem 'json' gem 'json'
else else
gem 'public_suffix', '5.0.5'
gem 'nokogiri', '~> 1.8.5' gem 'nokogiri', '~> 1.8.5'
gem 'json', '2.6.1' gem 'json', '2.6.1'
end end