Sha256: bb83171afb08eb9b152eae8d9fcef25fb9a056dbc077c902f92b104a60e475cc
Contents?: true
Size: 643 Bytes
Versions: 14
Compression:
Stored size: 643 Bytes
Contents
module Scimitar # Scimitar general configuration. # # See config/initializers/scimitar.rb for more information. # class EngineConfiguration include ActiveModel::Model attr_accessor :basic_authenticator, :token_authenticator, :application_controller_mixin, :exception_reporter, :optional_value_fields_required def initialize(attributes = {}) # Set defaults that may be overridden by the initializer. # defaults = { optional_value_fields_required: true } super(defaults.merge(attributes)) end end end
Version data entries
14 entries across 14 versions & 1 rubygems