pry 0.9.0pre1-java → 0.9.0pre2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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