aboutsummaryrefslogtreecommitdiffstats
path: root/lib/generators/capistrano/refinerycms/templates/config_initializers_refinery_core.rb.erb
blob: e0bc23a2e9e3debe664f94145471419e938a95ec (plain) (blame)
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
<%
# Recipes for installing RefineryCMS using Capistrano 3.x
# Copyright (C) 2015  Harald Eilertsen <haraldei@anduin.net>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
%>
# 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