lib/grumlin/expressions/t.rb in grumlin-0.14.2 vs lib/grumlin/expressions/t.rb in grumlin-0.14.3

- old
+ new

@@ -1,13 +1,15 @@ # frozen_string_literal: true module Grumlin module Expressions module T - extend Tool - SUPPORTED_STEPS = %i[id label].freeze - define_steps(SUPPORTED_STEPS, "T") + class << self + extend Expression + + define_steps(SUPPORTED_STEPS, "T") + end end end end