# Wicked Use wicked to make your Rails controllers into step-by-step wizards. To see Wicked in action check out the example [Rails app](https://github.com/schneems/wicked_example) or [watch the screencast](http://schneems.com/post/18437886598/wizard-ify-your-rails-controllers-with-wicked). # Why This fork is for This is a fork from the original wicked : https://github.com/schneems/wicked, and it's purpose is adding the ability to browse backwards in the wizard, and in this fork I'm introducing the following methods: View/URL Helpers ```ruby previous_wizard_path # Url of the next step ``` Controller Tidbits: ```ruby previous_step # Gets symbol of next step ```