Skip to content

Instantly share code, notes, and snippets.

@lachie
Forked from timriley/Sinatra cycle helpers.rb
Created February 13, 2009 01:15
Show Gist options
  • Save lachie/62984 to your computer and use it in GitHub Desktop.
Save lachie/62984 to your computer and use it in GitHub Desktop.
helpers do
def cycle
%w{even odd}[@_cycle = ((@_cycle || -1) + 1) % 2]
end
CYCLE = %w{even odd}
def cycle_fully_sick
CYCLE[@_cycle = ((@_cycle || -1) + 1) % 2]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment