Sha256: 011eb278682024a17e4ecc095f7d5ddecbf87bb06daa996ad94d715a2fcddaf3

Contents?: true

Size: 265 Bytes

Versions: 1

Compression:

Stored size: 265 Bytes

Contents

module Enlightenment
  module ApplicationHelper
    def method_missing(method, *args, &block)
      enlightenment.send(method, *args, &block)
    rescue NoMethodError
      main_app.send(method, *args, &block)
    rescue NoMethodError
      super
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
enlightenment-0.0.1.pre.4 app/helpers/enlightenment/application_helper.rb