Commit e38850e7f38d9c5c678924a24c76e355a010d2af
1 parent
c807fe45
Exists in
master
and in
1 other branch
small cleanup on application.rb
Showing
1 changed file
with
1 additions
and
10 deletions
Show diff stats
config/application.rb
1 | 1 | require File.expand_path('../boot', __FILE__) |
2 | 2 | |
3 | -# Pick the frameworks you want: | |
4 | -# require 'rails/all' | |
5 | -# require "active_record/railtie" | |
6 | 3 | require "action_controller/railtie" |
7 | 4 | require "action_mailer/railtie" |
8 | -# require "active_resource/railtie" | |
9 | 5 | require 'mongoid/railtie' |
10 | 6 | require "sprockets/railtie" |
11 | 7 | |
12 | 8 | require 'draper' |
13 | 9 | |
14 | -if defined?(Bundler) | |
15 | - # If you precompile assets before deploying to production, use this line | |
16 | - Bundler.require(*Rails.groups(:assets => %w(development test))) | |
17 | - # If you want your assets lazily compiled in production, use this line | |
18 | - # Bundler.require(:default, :assets, Rails.env) | |
19 | -end | |
10 | +Bundler.require(*Rails.groups) | |
20 | 11 | |
21 | 12 | module Errbit |
22 | 13 | class Application < Rails::Application | ... | ... |