lib/grumlin/repository.rb in grumlin-0.15.6 vs lib/grumlin/repository.rb in grumlin-0.16.0
- old
+ new
@@ -2,14 +2,14 @@
module Grumlin
module Repository
module InstanceMethods
def __
- with_shortcuts(Grumlin::Expressions::U)
+ TraversalStart.new(self.class.shortcuts)
end
def g
- with_shortcuts(Grumlin::Traversal.new)
+ TraversalStart.new(self.class.shortcuts)
end
end
def self.extended(base)
base.extend(Grumlin::Shortcuts)