Class: Spinach::Background

Inherits:
Object
  • Object
show all
Defined in:
lib/spinach/background.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(feature) ⇒ Background

Returns a new instance of Background.



6
7
8
9
# File 'lib/spinach/background.rb', line 6

def initialize(feature)
  @feature = feature
  @steps   = []
end

Instance Attribute Details

#featureObject

Returns the value of attribute feature.



4
5
6
# File 'lib/spinach/background.rb', line 4

def feature
  @feature
end

#lineObject

Returns the value of attribute line.



3
4
5
# File 'lib/spinach/background.rb', line 3

def line
  @line
end

#stepsObject

Returns the value of attribute steps.



4
5
6
# File 'lib/spinach/background.rb', line 4

def steps
  @steps
end