class OpenStax::Utilities::Configuration
Attributes
assets_manifest_filename[RW]
assets_url[RW]
backend[RW]
deployment[RW]
deployment_version[RW]
environment_name[RW]
frontend[RW]
release_version[RW]
standard_date_format[RW]
standard_datetime_format[RW]
standard_time_format[RW]
status_authenticate[RW]
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/openstax_utilities.rb, line 68 def initialize @standard_date_format = "%b %d, %Y" @standard_datetime_format = "%b %d, %Y %l:%M %p %Z" @standard_time_format = "%l:%M %p %Z" @status_authenticate = -> { head :forbidden } @environment_name = 'development' @assets_manifest_filename = 'assets.json' super end