Created
June 18, 2013 18:36
-
-
Save jacortinas/5808043 to your computer and use it in GitHub Desktop.
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 characters
class User | |
def follow_default_users | |
default_user_emails = ['[email protected]'] | |
default_user_emails.each do |email| | |
follow_with_email!(email) | |
end | |
end | |
def follow_with_email!(email) | |
user = User.find_by_email(email) | |
follow!(user) if user | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: