Flowdock
method

new

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: Filter
new(runnable, file, line_or_range) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/test_unit/runner.rb, line 159
      def initialize(runnable, file, line_or_range)
        @runnable, @file = runnable, File.expand_path(file)
        if line_or_range
          first, last = line_or_range.split("-").map(&:to_i)
          last ||= first
          @line_range = Range.new(first, last)
        end
      end
Register or log in to add new notes.