method

validate_step_symbol!

rails latest stable - Class: ActiveJob::Continuation::Validation

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

validate_step_symbol!(name)
private

No documentation available.

# File activejob/lib/active_job/continuation/validation.rb, line 15
        def validate_step_symbol!(name)
          unless name.is_a?(Symbol)
            raise_step_error! "Step '#{name}' must be a Symbol, found '#{name.class}'"
          end
        end