aboutsummaryrefslogtreecommitdiffstats
path: root/lib/generators/capistrano/refinerycms/templates/config_initializers_refinery_core.rb.erb
blob: 296924bf6396fea9517c943251fee400dc31c777 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# encoding: utf-8
Refinery::Core.configure do |config|
  config.rescue_not_found = Rails.env.production?
  config.force_ssl = <%= fetch(:refinerycms_force_ssl, false) %>
  config.s3_backend = !(ENV['S3_KEY'].nil? || ENV['S3_SECRET'].nil?)
  config.dragonfly_custom_backend_class = '<%= fetch(:refinerycms_dragonfly_custom_backend_class) %>'
  config.dragonfly_custom_backend_opts = <%= fetch(:refinerycms_dragonfly_custom_backend_opts) %>
  config.base_cache_key = '<%= fetch(:refinerycms_base_cache_key) %>'
  config.site_name = '<%= fetch(:refinerycms_site_name) %>'
  config.google_analytics_page_code = '<%= fetch(:refinerycms_google_analytics_page_code) %>'
  config.authenticity_token_on_frontend = <%= fetch(:refinerycms_authenticity_token_on_frontend) %>
  config.dragonfly_secret = '<%= fetch(:refinerycms_dragonfly_secret) %>'
  config.wymeditor_whitelist_tags = <%= fetch(:refinerycms_wymeditor_whitelist_tags) %>
  config.register_javascript '<%= fetch(:refinerycms_extra_javascript) %>'
  config.register_stylesheet '<%= fetch(:refinerycms_extra_stylesheet) %>'
  config.backend_route = '<%= fetch(:refinerycms_backend_route) %>'
end