Sha256: 18be82e8d50ba436e49b1b94d20b45e225bb35c72062c348182b9fcbc26628d1
Contents?: true
Size: 348 Bytes
Versions: 18
Compression:
Stored size: 348 Bytes
Contents
module Landable module ApplicationHelper def method_missing(method, *args, &block) return main_app.send(method, *args) if method =~ /_(path|url)$/ && main_app.respond_to?(method) super end def respond_to?(method) return true if method =~ /_(path|url)$/ && main_app.respond_to?(method) super end end end
Version data entries
18 entries across 18 versions & 1 rubygems