mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 06:19:17 +08:00
FIX: rss gem is bundled gem since Ruby 3 (#14350)
* FIX: rss gem is bundled gem since Ruby 3 Refer https://github.com/ruby/ruby/pull/2832
This commit is contained in:
parent
b6ccc9c37a
commit
a29a6522d0
3
Gemfile
3
Gemfile
|
@ -210,6 +210,9 @@ gem 'gc_tracer', require: false, platform: :mri
|
|||
# required for feed importing and embedding
|
||||
gem 'ruby-readability', require: false
|
||||
|
||||
# rss gem is a bundled gem from Ruby 3 onwards
|
||||
gem 'rss', require: false
|
||||
|
||||
gem 'stackprof', require: false, platform: :mri
|
||||
gem 'memory_profiler', require: false, platform: :mri
|
||||
|
||||
|
|
|
@ -380,6 +380,8 @@ GEM
|
|||
rspec-mocks (~> 3.10)
|
||||
rspec-support (~> 3.10)
|
||||
rspec-support (3.10.2)
|
||||
rss (0.2.9)
|
||||
rexml
|
||||
rswag-specs (2.4.0)
|
||||
activesupport (>= 3.1, < 7.0)
|
||||
json-schema (~> 2.2)
|
||||
|
@ -581,6 +583,7 @@ DEPENDENCIES
|
|||
rspec
|
||||
rspec-html-matchers
|
||||
rspec-rails
|
||||
rss
|
||||
rswag-specs
|
||||
rtlit
|
||||
rubocop-discourse
|
||||
|
|
Loading…
Reference in New Issue
Block a user