Sha256: a934d399a5bbf86108850704fbbe684750d7f81f3efe85aec5b11b6a199a6284

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

module Responders
  module ControllerMethod
    # Adds the given responders to the current controller's responder, allowing you to cherry-pick
    # which responders you want per controller.
    # 
    #   class InvitationsController < ApplicationController
    #     responders :flash, :http_cache
    #   end
    #
    # Takes symbols and strings and translates them to VariableResponder (eg. :flash becomes FlashResponder).
    # Also allows passing in the responders modules in directly, so you could do:
    #
    #    responders FlashResponder, HttpCacheResponder
    #
    # Or a mix of both methods:
    #
    #    responders :flash, MyCustomResponder
    #
    def responders(*responders)
      self.responder = responders.inject(Class.new(responder)) do |klass, responder|
        responder = case responder
          when Module
            responder
          when String, Symbol
            "#{responder.to_s.classify}Responder".constantize
          else
            raise "responder has to be a string, a symbol or a module"
          end
        
        klass.send(:include, responder)
        klass
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
responders-0.6.0 lib/responders/controller_method.rb