Sha256: 89490ea630de2d7b5aafe37aa721a05f3b1652bf93b9a9ee1b11fe4640130670
Contents?: true
Size: 265 Bytes
Versions: 13
Compression:
Stored size: 265 Bytes
Contents
module Garb class Step attr_reader :name, :number, :path def initialize(attributes) return unless attributes.is_a?(Hash) @name = attributes['name'] @number = attributes['number'].to_i @path = attributes['path'] end end end
Version data entries
13 entries across 13 versions & 4 rubygems