In models and controllers, we often use Rails macros like before_validation, skip_before_filter on top of the class definition.
How is this implemented? How do I add custom ones?
Thanks!
|
In models and controllers, we often use Rails macros like How is this implemented? How do I add custom ones? Thanks! |
|||
|
|
|
They're just standard Ruby functions. Ruby's flexible approach to syntax makes it look better than it is. You can create your own simply by writing your method as a normal Ruby function and doing one of the following:
An Example
The *nested_within* provides helper functions and variables to help identify the id of the "parent" resource. In effect it parses the URL on the fly and is accessible by every one of our controllers. For example when a request comes into the controller, it is automatically parsed and the class attribute @parent_resource is set to the result of a Rails find. A side effect is that a "Not Found" response is sent back if the parent resource doesn't exist. That saves us from typing boiler plate code in every nested resource.
The nested_within function is defined in ApplicationController (controllers/application.rb) and therefore gets pulled in automatically. Note that nested_within gets executed inside the body of the controller class. This adds the method find_parent_id to the controller. SummaryA combination of Ruby's flexible syntax and Rail's convention-over-configuration makes this all look more powerful (or wierder) than it actually is. Next time you find a cool method, just stick a breakpoint in front of it and trace through it. Ahh Open Source! Let me know if I can help further or if you want some pointers on how that nested_within code works. Chris |
||||
|
|
|
Chris's answer is right. But here's where you want to throw your code to write your own: The easiest way to add Controller methods like that is to define it in
Then you can access it from individual controllers like so:
For models, you want to reopen
I personally would put that in a file in Then you can access it in models like so:
|
|||
|
|