update Gemfile

This commit is contained in:
邱博亞 2024-11-07 22:16:38 +08:00
parent f7638aa214
commit ae1fa38314
1 changed files with 8 additions and 0 deletions

View File

@ -211,13 +211,21 @@ else
gem 'rss' gem 'rss'
#parser #parser
if RUBY_VERSION.to_f >= 3.0 if RUBY_VERSION.to_f >= 3.0
if RUBY_VERSION.to_f >= 3.2
gem 'multi_xml'
else
gem 'multi_xml', '0.6.0'
end
gem 'public_suffix' gem 'public_suffix'
gem 'nokogiri', '~> 1.16', '>= 1.16.2' gem 'nokogiri', '~> 1.16', '>= 1.16.2'
gem 'json' gem 'json'
gem 'set'
else else
gem 'multi_xml', '0.6.0'
gem 'public_suffix', '5.0.5' 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'
gem 'set', '1.0.4'
end end
gem 'actionpack-page_caching' gem 'actionpack-page_caching'