-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathapplication.rb
85 lines (64 loc) · 3.17 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
require File.expand_path('../boot', __FILE__)
require "action_controller/railtie"
require "rails/test_unit/railtie"
require "sprockets/railtie"
if defined?(Bundler)
Bundler.require(*Rails.groups)
end
module Frontend
class Application < Rails::Application
require 'frontend'
# 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.
# Custom directories with classes and modules you want to be autoloadable.
config.autoload_paths += %W(#{config.root}/app/presenters #{config.root}/lib)
# Only load the plugins named here, in the order given (default is alphabetical).
# :all can be used as a placeholder for all plugins not explicitly named.
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
# Activate observers that should always be running.
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
# 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
# This saves loading all 80-odd locales from the rails-i18n gem. This doesn't affect the loading
# of locales from config/locales
config.i18n.available_locales = [:en, :cy]
# JavaScript files you want as :defaults (application.js is always included).
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
# Configure the default encoding used in templates for Ruby 1.9.
config.encoding = "utf-8"
# Enable the asset pipeline
config.assets.enabled = true
config.assets.precompile += %w(
views/travel-advice.js
frontend.js
tour.js
application.css
application-ie6.css
application-ie7.css
application-ie8.css
)
# Path within public/ where assets are compiled to
config.assets.prefix = "/frontend"
# Paths used by helpers when generating links to assets
config.action_controller.assets_dir = Rails.root.join 'public/frontend'
config.action_controller.javascripts_dir = Rails.root.join 'public/frontend/javascripts'
config.action_controller.stylesheets_dir = Rails.root.join 'public/frontend/stylesheets'
# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'
# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password, :postcode]
# Disable Rack::Cache
config.action_dispatch.rack_cache = nil
# Disable Content Negotiation
config.action_dispatch.ignore_accept_header = true
# Override Rails 4 default which restricts framing to SAMEORIGIN.
config.action_dispatch.default_headers = {
'X-Frame-Options' => 'ALLOWALL'
}
end
end