Flowdock
method

parse_backtrace

Importance_0
parse_backtrace(backtrace) protected

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/runner/spec_parser.rb, line 63
      def parse_backtrace(backtrace)
        backtrace.collect do |trace_line|
          split_line = trace_line.split(':')
          [split_line[0], Integer(split_line[1])]
        end
      end
Register or log in to add new notes.