rubyrider / clomp

Clomp gem provides a smooth, lightweight, productive and reusable way to build an operation using Railway oriented programing paradigm
https://rubyrider.github.io/clomp/
MIT License
4 stars 1 forks source link

Jump to Track #1

Open crifat opened 6 years ago

crifat commented 6 years ago

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
rubyrider commented 6 years ago

Thanks for the feature request! Will work on it soon.