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

- old
+ new

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