Let's say I'm stopped on point while debugging:
def get_data
byebug
=> @cache ||= calculate_data
end
And @cache
has value, so on step
function calculate_data
won't be executed. But I need to check what's going on inside of calculate_data
at this exact runtime point.
I can just execute calculate_data
and see its result in console output, but can I execute function from debug console and at same time step into
it?
(Using byebug or some other debugging tool).
Goal - is to inspect calculate_data
logic at arbitrary time, particularly when get_data
called with @cache
filled.
With pry-moves you can execute separate debug of arbitrary function from current context:
Type
debug calculate_data
to run calculate_data and stop at first line inside of it.