module EacRubyUtils::SettingsProvider

def settings_object

return [ActiveSupport::HashWithIndifferentAccess]
def settings_object
  ActiveSupport::HashWithIndifferentAccess.new(
    respond_to?(settings_object_name) ? send(settings_object_name) : {}
  )
end