class Handlebars::Helpers::HelperMissingHelper

Public Class Methods

apply(context, name, block, else_block) click to toggle source
# File lib/ruby-handlebars/helpers/helper_missing_helper.rb, line 13
def self.apply(context, name, block, else_block)
  raise(::Handlebars::UnknownHelper, "Helper \"#{name}\" does not exist" )
end
registry_name() click to toggle source
# File lib/ruby-handlebars/helpers/helper_missing_helper.rb, line 9
def self.registry_name
  'helperMissing'
end