Make file_and_line method to be public (lib/pry/commands/cat/file_formatter.rb)

This commit is contained in:
yui-knk 2013-12-14 21:04:45 +09:00
parent 4b284f9aea
commit 08702ce1d8
1 changed files with 2 additions and 2 deletions

View File

@ -19,14 +19,14 @@ class Pry
decorate(@code_from_file)
end
private
def file_and_line
file_name, line_num = file_with_embedded_line.split(/:(?!\/|\\)/)
[file_name, line_num ? line_num.to_i : nil]
end
private
def file_name
file_and_line.first
end