module Hestia

Constants

VERSION

Public Class Methods

check_secret_key_base() click to toggle source
# File lib/hestia.rb, line 6
def self.check_secret_key_base
  if Rails.application.config.respond_to?(:secret_key_base) && Rails.application.config.secret_key_base
    fail "Having `config.secret_token' and `config.secret_key_base' defined is not allowed in Hestia. Please refer to Hestia's Readme for more information."
  end
end