module Grumlin::Sugar
Constants
- HELPERS
Public Class Methods
included(base)
click to toggle source
# File lib/grumlin/sugar.rb, line 13 def self.included(base) HELPERS.each do |helper| name = helper.name.split("::").last base.const_set(name, helper) end end
Public Instance Methods
__()
click to toggle source
# File lib/grumlin/sugar.rb, line 20 def __ Grumlin::U end
g()
click to toggle source
# File lib/grumlin/sugar.rb, line 24 def g Grumlin::Traversal.new end