Skip to content

Instantly share code, notes, and snippets.

@andrewtimberlake
Created July 3, 2009 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewtimberlake/139970 to your computer and use it in GitHub Desktop.
Save andrewtimberlake/139970 to your computer and use it in GitHub Desktop.
process_definition :name => 'Trace Confirmation', :revision => '1' do
sequence do
iterator :on_value => (0..5).to_a.join(','), :to_variable => 'i' do
sequence do
_break :if => "${i} is 5"
debug
_break :if => "${f:complete} == true"
_break :if => "${f:complete} is true"
do_something
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment