lib/grumlin/expressions/operator.rb in grumlin-0.15.3 vs lib/grumlin/expressions/operator.rb in grumlin-0.15.4

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module Grumlin module Expressions module Operator - SUPPORTED_STEPS = %i[addAll and assign div max min minus mult or sum].freeze + SUPPORTED_STEPS = Grumlin.definitions.dig(:expressions, :operator).map(&:to_sym).freeze class << self extend Expression define_steps(SUPPORTED_STEPS, "Operator")