class Garb::Step

Attributes

name[R]
number[R]
url[R]

Public Class Methods

new(attributes) click to toggle source
# File lib/garb/step.rb, line 5
def initialize(attributes)
  return unless attributes.is_a? Hash

  @name = attributes['name']
  @number = attributes['number']
  @url = attributes['url']
end