Sha256: ade5a1e48c997a6cafec6ce446a828bec504a5eeaa74ab465b60cb1fae60892f

Contents?: true

Size: 960 Bytes

Versions: 5

Compression:

Stored size: 960 Bytes

Contents

# frozen_string_literal: true

# On the fly delegation from the decorator to the decorated object and the helpers.
module ActiveDecorator
  module Helpers
    def method_missing(method, *args, &block)
      super
    rescue NoMethodError, NameError => e1
      # the error is not mine, so just releases it as is.
      raise e1 if e1.name != method

      if (view_context = ActiveDecorator::ViewContext.current)
        begin
          view_context.send method, *args, &block
        rescue NoMethodError => e2
          raise e2 if e2.name != method

          raise NoMethodError.new("undefined method `#{method}' for either #{self} or #{view_context}", method)
        rescue NameError => e2
          raise e2 if e2.name != method

          raise NameError.new("undefined local variable `#{method}' for either #{self} or #{view_context}", method)
        end
      else  # AC::API would have not view_context
        raise e1
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
active_decorator-1.3.2 lib/active_decorator/helpers.rb
active_decorator-1.3.1 lib/active_decorator/helpers.rb
active_decorator-1.3.0 lib/active_decorator/helpers.rb
active_decorator-1.2.0 lib/active_decorator/helpers.rb
active_decorator-1.1.1 lib/active_decorator/helpers.rb