Method: Cyperful::Driver#print_steps
- Defined in:
- lib/cyperful/driver.rb
#print_steps ⇒ Object
209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/cyperful/driver.rb', line 209 def print_steps logger.puts("found #{@steps.length} steps:") @steps.each_with_index do |step, i| logger.plain( " #{ (i + 1).to_s.rjust(2) }. #{step[:method]}: #{step[:line]}:#{step[:column]}", ) end logger.plain end |