Method: Highway::Steps::Step.name

Defined in:
lib/highway/steps/step.rb

.nameString

Name of the step as it appears in configuration file.

Returns:

  • (String)

Raises:

  • (NotImplementedError)
[View source]

20
21
22
# File 'lib/highway/steps/step.rb', line 20

def self.name
  raise NotImplementedError.new("You must override `#{__method__.to_s}` in `#{self.class.to_s}`.")
end