Last active
August 29, 2015 14:00
-
-
Save peternixey/11176324 to your computer and use it in GitHub Desktop.
Revisions
-
peternixey revised this gist
Apr 22, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,5 @@ user_has_not_yet_edited_profile = (user.created_at == user.updated_at) if user_is_recently_created && invitation_is_unsent && user_has_not_yet_edited_profile ... -
peternixey renamed this gist
Apr 22, 2014 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ user_is_recently_created = user.created_at < 10.minutes.ago invitation_is_unsent = !user.invitation_token user_has_not_yet_edited_profile = (user.created_at == user.updated_at) -
peternixey created this gist
Apr 22, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ user_is_recently_created = user.created_at < 10.minutes.ago invitation_is_unsent = !user.invitation_token user_has_not_yet_edited_profile = (user.created_at == user.updated_at) if user_is_recently_created && invitation_is_unsent && user_has_not_yet_edited_profile