Last active
November 20, 2023 12:34
-
-
Save joshuapinter/4241250 to your computer and use it in GitHub Desktop.
Rails Model Template
This file contains 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 [Your Class Here] < ActiveRecord::Base | |
################################################################################################## | |
### Attributes ################################################################################### | |
################################################################################################## | |
### Constants #################################################################################### | |
################################################################################################## | |
### Includes and Extensions ###################################################################### | |
################################################################################################## | |
### Callbacks #################################################################################### | |
################################################################################################## | |
### Associations ################################################################################# | |
################################################################################################## | |
### Validations ################################################################################## | |
################################################################################################## | |
### Scopes ####################################################################################### | |
################################################################################################## | |
### Other ######################################################################################## | |
################################################################################################## | |
### Class Methods ################################################################################ | |
################################################################################################## | |
### Instance Methods ############################################################################# | |
######### | |
protected | |
######### | |
####### | |
private | |
####### | |
end |
I follow a similar pattern. Put my constants and includes at the top, as they may be used in the other parts.
Some generally useful style guides here, if you haven't seen it. https://github.com/bbatsov/rails-style-guide
@smsohan Looking at it again I could see the Constants being more useful put at the top. Thanks.
Updated the model template so that Callbacks come before Associations. This is to prevent weird situations happening with dependent: :destroy
where child objects are destroyed before hitting a before_destroy
callback.
See the following for more details:
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Money in the bank.