method

parse_location

parse_location(location)
protected

No documentation available.

# File lib/spec/runner/line_number_query.rb, line 72
      def parse_location(location)
        location =~ /(.*)\:(\d*)(\:|$)/
        return $1, Integer($2)
      end