method_match 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/method_match/command_runner.rb +1 -1
- data/lib/method_match/version.rb +1 -1
- metadata +1 -1
@@ -17,7 +17,7 @@ module MethodMatch
|
|
17
17
|
def rspec_command
|
18
18
|
command = "rspec #{@matcher.spec_name}"
|
19
19
|
command += " -e '##{@matcher.method_name}'" if @matcher.method_name
|
20
|
-
command += ":#{line}" if @matcher.spec?
|
20
|
+
command += ":#{@matcher.line}" if @matcher.spec?
|
21
21
|
command
|
22
22
|
end
|
23
23
|
end
|
data/lib/method_match/version.rb
CHANGED