Created
November 12, 2011 19:00
-
-
Save alexbartlow/1360954 to your computer and use it in GitHub Desktop.
Ideal Completion Syntax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module UserHelper | |
class UserCompletion < Completely | |
step "user_completion.fill_out_profile", :link => user_profile_path do | |
user_profile.has_all_data? | |
end | |
list_elt 'ul.user_completion' | |
item_elt 'li.user_step' | |
item_completed_class 'completed' | |
item_pending_class 'pending' | |
end | |
end | |
@completion = UserHelper::UserCompletion.new(@user) | |
<%= @completion.to_html %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment