Sha256: 6179024a067d10878dba1581b9baaefe98e08ba23c1bf2cf1d283fb6d3397a23
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
require 'action_controller/base' module Responders autoload :FlashResponder, 'responders/flash_responder' autoload :HttpCacheResponder, 'responders/http_cache_responder' autoload :CollectionResponder, 'responders/collection_responder' autoload :LocationResponder, 'responders/location_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 if config.respond_to?(:app_generators) config.app_generators.scaffold_controller = :responders_controller else config.generators.scaffold_controller = :responders_controller end # 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 end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
responders-1.1.1 | lib/responders.rb |
responders-1.1.0 | lib/responders.rb |