Sha256: adaa92a056d4a1bbf802e111bfa57ee83b070286417bb6714a993f3aaad3a670

Contents?: true

Size: 465 Bytes

Versions: 1

Compression:

Stored size: 465 Bytes

Contents

# frozen_string_literal: true

module Grumlin
  module Tools
    module U
      # TODO: add other start steps
      SUPPORTED_STEPS = %i[V addV count fold has id inE inV label out outV project repeat timeLimit unfold valueMap
                           values].freeze

      class << self
        SUPPORTED_STEPS.each do |step|
          define_method step do |*args|
            AnonymousStep.new(step, *args)
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
grumlin-0.12.1 lib/grumlin/tools/u.rb