Sha256: a250712b7d960a313cd20dffebc1eece83580a4ae033175c09738305feba8d8a
Contents?: true
Size: 246 Bytes
Versions: 7
Compression:
Stored size: 246 Bytes
Contents
# frozen_string_literal: true module Scribo module ApplicationHelper def method_missing(method, *args, &block) if main_app.respond_to?(method) main_app.send(method, *args) else super end end end end
Version data entries
7 entries across 7 versions & 1 rubygems