Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 680003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:19:22+00:00 2026-05-14T01:19:22+00:00

I am developing a Rails application and would like to understand when to use

  • 0

I am developing a Rails application and would like to understand when to use self.for.

Here is the code of a method that I would like to fully understand. If it is possible I would like to have an alternative to this code so it would make things more clear.

def self.for(facebook_id)
  User.create_by_facebook_id(facebook_id)
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T01:19:22+00:00Added an answer on May 14, 2026 at 1:19 am

    self refers to the current object.

    Within a class, self is used to define a class-level method.

    class Foo
      def self.for(facebook_id)
        User.create_by_facebook_id(facebook_id)
      end
    end
    

    defines a class method for in class Foo. It is invoked:

    Foo.for(facebook_id)
    

    You can google for class methods to learn more.

    It could be that a part of Rails or a plugin/gem is expecting that some classes will have a class method “for” More context would be helpful in this regard.

    What the method is doing

    As is common for class methods, it is creating an instance of a class. For example, the ActiveRecord class has a class method “create” which attempts to create an instance of the model class that has been stored in the database. Thus User.create will return an instance of the User class that has been stored in the database.

    In your example code, it is calling a class method “create_by_facebook_id” that is provided by the User class in the application.

    Looks like the “for” method is being used for information hiding since all it’s doing is making another method call (to User.create_by_facebook)

    Added:

    By the way, the default return value from Ruby methods is the value of the last statement. So your example method will return the user instance newly created from the supplied facebook_id.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.