Please explain with example difference between named scope and module.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You would use Named scope if you want to package multiple conditions in Rails such as:
the good advantage of named scopes is you can chain them together. for instance:
Module is used to group similar things together. So normally if you have code that needs to be shared across you app you would define a module in your lib directory and put classes such as.
Module have other use cases, this is the main one from my experience. |
|||
|
|