Sha256: d760a115551e112dedc249b6f7ccda78c945907778531dbf6d07302c7406107e
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 KB
Contents
# frozen_string_literal: true require "action_controller" require "rails/railtie" module ActionController autoload :Responder, "action_controller/responder" autoload :RespondWith, "action_controller/respond_with" end module Responders autoload :FlashResponder, "responders/flash_responder" autoload :HttpCacheResponder, "responders/http_cache_responder" autoload :CollectionResponder, "responders/collection_responder" require "responders/controller_method" class Railtie < ::Rails::Railtie config.responders = ActiveSupport::OrderedOptions.new config.responders.flash_keys = [:notice, :alert] config.responders.namespace_lookup = false config.responders.error_status = :ok config.responders.redirect_status = :found # Add load paths straight to I18n, so engines and application can overwrite it. require "active_support/i18n" I18n.load_path << File.expand_path("../responders/locales/en.yml", __FILE__) initializer "responders.flash_responder" do |app| Responders::FlashResponder.flash_keys = app.config.responders.flash_keys Responders::FlashResponder.namespace_lookup = app.config.responders.namespace_lookup ActionController::Responder.error_status = app.config.responders.error_status ActionController::Responder.redirect_status = app.config.responders.redirect_status end end end ActiveSupport.on_load(:action_controller) do include ActionController::RespondWith end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
blacklight-spotlight-3.6.0.beta8 | vendor/bundle/ruby/3.2.0/gems/responders-3.1.1/lib/responders.rb |
responders-3.1.1 | lib/responders.rb |
responders-3.1.0 | lib/responders.rb |