Hi Team,
Is Discourse latest code base upgraded to Rails 5?
or just the below frame works are updated
gem ‘actionmailer’, ‘5.2’
gem ‘actionpack’, ‘5.2’
gem ‘actionview’, ‘5.2’
gem ‘activemodel’, ‘5.2’
gem ‘activerecord’, ‘5.2’
gem ‘activesupport’, ‘5.2’
gem ‘railties’, ‘5.2’
Thanks,
Nishanth.
Yup Discourse is on Rails 5.2.
If you take a look at https://github.com/rails/rails, all it does is to pull in the different active
-gems.
https://github.com/rails/rails/blob/67fa1ad0c3b811aa527ec748e14d95dee2db9f69/rails.gemspec#L23-L32
I believe Discourse does this to omit activecable
, activestorage
and their dependencies.
4 Likes