You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 21, 2024. It is now read-only.
Will it be possible to add a feature where a developer can jump to a certain step by skipping steps in-between?
for example:
track :step_1
track :step_2
track :step_3
def step_1
jump_to :step_3 # this will jump to step_3 and skip step_2
end
def step_2
# Step 2 codes here
end
def step_3
# Step 3 codes here
end