Sha256: cfce7cbf56de961eb15916c36639150e51f45fc68290e8cce9b38168b6c53dc6
Contents?: true
Size: 466 Bytes
Versions: 2
Compression:
Stored size: 466 Bytes
Contents
# frozen_string_literal: true module Grumlin module Repository module InstanceMethods def __ TraversalStart.new(self.class.shortcuts) end def g TraversalStart.new(self.class.shortcuts) end end def self.extended(base) base.extend(Grumlin::Shortcuts) base.include(Grumlin::Expressions) base.include(InstanceMethods) base.shortcuts_from(Grumlin::Shortcuts::Properties) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
grumlin-0.16.1 | lib/grumlin/repository.rb |
grumlin-0.16.0 | lib/grumlin/repository.rb |