cells-rails icon indicating copy to clipboard operation
cells-rails copied to clipboard

Order of this gem in Gemfile matters when used with trailblazer-rails

Open sauy7 opened this issue 7 years ago • 0 comments

Adding this issue in case others trip over this...

I use rubocop to verify my code style. One of the style rules is that gems should be listed in alphabetical order (within their group). However, I've found I've needed to write my Gemfile like this:

# rubocop:disable Bundler/OrderedGems
gem 'trailblazer-rails', '0.4.0'
gem 'cells-rails', '0.0.6'
# rubocop:enable Bundler/OrderedGems

in order for config.cells.with_assets = ['pro/cell/show'] to function correctly in config/application.rb.

sauy7 avatar Dec 18 '16 23:12 sauy7