class OpenStax::Utilities::Configuration
Attributes
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 62 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 } super end