module Glipper::Helpers

Public Instance Methods

h()
Alias for: helpers
helpers() click to toggle source
# File lib/glipper/helpers.rb, line 3
def helpers
  @helpers
end
Also aliased as: h
method_missing(name, *args, **options, &block) click to toggle source
Calls superclass method
# File lib/glipper/helpers.rb, line 8
def method_missing(name, *args, **options, &block)
  if h.respond_to?(name)
    h.public_send(name, *args, **options, &block)
  else
    super
  end
end
respond_to_missing?(name, include_private = false) click to toggle source
Calls superclass method
# File lib/glipper/helpers.rb, line 16
def respond_to_missing?(name, include_private = false)
  h.respond_to?(name) || super
end