-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathapplication.rb
39 lines (30 loc) · 1.73 KB
/
application.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require File.expand_path('../boot', __FILE__)
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env)
module RailsgirlsLondon
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de
# Enforce whitelist mode for mass assignment.
# This will create an empty whitelist of attributes available for mass-assignment for all models
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
# parameters by using an attr_accessible or attr_protected declaration.
#config.active_record.whitelist_attributes = true
config.assets.paths << Rails.root.join("app", "assets", "fonts")
config.assets.precompile << ["*.svg", "*.eot", "*.woff", "*.ttf"]
# config.assets.precompile << /\.(?:svg|eot|woff|ttf)$/
config.assets.precompile += %w( admin.css application_mailer.css )
# invoke router when an exceptino occurs
config.exceptions_app = self.routes
config.autoload_paths += %W( lib )
end
end