Sha256: 9dda7937bee8f74f959441cada3a91a9061de223acf3df8df451639ee2758061
Contents?: true
Size: 463 Bytes
Versions: 14
Compression:
Stored size: 463 Bytes
Contents
# frozen_string_literal: true module Grumlin module Repository module InstanceMethods def __ with_shortcuts(Grumlin::Expressions::U) end def g with_shortcuts(Grumlin::Traversal.new) 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
14 entries across 14 versions & 1 rubygems