Sha256: b2f0aec42bd7272a19627126fa9dd8cc4c4a377361253cc217b0a3ce9bc5d8f8
Contents?: true
Size: 1.63 KB
Versions: 6
Compression:
Stored size: 1.63 KB
Contents
require "caboose/engine" module Caboose mattr_accessor :salt @@salt = "This needs to be changed pronto." mattr_accessor :assets_path @@assets_path = "assets" mattr_accessor :plugins @@plugins = ['Caboose::CorePlugin'] # Any paths to modeljs javascript files mattr_accessor :modeljs_js_files @@modeljs_js_files = [] mattr_accessor :modeljs_js_paths @@modeljs_js_paths = [] # Any modeljs stylesheets mattr_accessor :modeljs_css_files @@modeljs_css_files = [] # The login authenticator mattr_accessor :authenticator_class @@authenticator_class = 'Caboose::Authenticator' # Whether or not to use URL parameters (parameters embedded in the URL before the querystring) mattr_accessor :use_url_params @@use_url_params = true # Whether or not to use AB Testing mattr_accessor :use_ab_testing @@use_ab_testing = true # Website name mattr_accessor :website_name @@website_name = "Website" # Website domain name (with the protocol) mattr_accessor :website_domain @@website_domain = "http://www.google.com" # CDN domain mattr_accessor :cdn_domain @@cdn_domain = "" # Email settings mattr_accessor :email_from @@email_from = "webmaster@caboosecms.com" # Define asset collections mattr_accessor :javascripts, :stylesheets @@javascripts = [] @@stylesheets = [] # API key for timezonedb.com/api mattr_accessor :timezonedb_api_key @@timezonedb_api_key = '' # Session length (in hours) mattr_accessor :session_length @@session_length = 24 # Parse rich text blocks mattr_accessor :parse_richtext_blocks @@parse_richtext_blocks = true end
Version data entries
6 entries across 6 versions & 1 rubygems