pry 0.9.0pre1 → 0.9.0pre2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/pry/default_commands/introspection.rb +1 -6
- data/lib/pry/version.rb +1 -1
- metadata +1 -1
@@ -136,12 +136,7 @@ class Pry
|
|
136
136
|
|
137
137
|
# editor is invoked here
|
138
138
|
else
|
139
|
-
|
140
|
-
file, line = rbx_core_path_line_for(meth)
|
141
|
-
else
|
142
|
-
file, line = meth.source_location
|
143
|
-
end
|
144
|
-
|
139
|
+
file, line = path_line_for(meth)
|
145
140
|
set_file_and_dir_locals(file)
|
146
141
|
|
147
142
|
if Pry.editor.respond_to?(:call)
|
data/lib/pry/version.rb
CHANGED