Commit ca76abd72acfe5e726ae1b9bdbc17b8e8077be94
1 parent
4856846b
Exists in
master
and in
26 other branches
Gemfile: move asset pipeline dependencies to top level
This is needed to load the app in production mode. I would guess that fresh new Rails apps come with the asset pipeline dependencies on the top-level and not inside a group for a reason.
Showing
1 changed file
with
3 additions
and
4 deletions
Show diff stats
Gemfile
... | ... | @@ -20,10 +20,9 @@ gem 'locale', '~> 2.0.5' |
20 | 20 | gem 'whenever', :require => false |
21 | 21 | gem 'eita-jrails', '>= 0.9.5', :require => 'jrails' |
22 | 22 | |
23 | -group :assets do | |
24 | - gem 'uglifier', '>= 1.0.3' | |
25 | - gem 'sass-rails' | |
26 | -end | |
23 | +# asset pipeline | |
24 | +gem 'uglifier', '>= 1.0.3' | |
25 | +gem 'sass-rails' | |
27 | 26 | |
28 | 27 | group :production do |
29 | 28 | gem 'dalli', '~> 2.7.0' | ... | ... |