Skip to content

Instantly share code, notes, and snippets.

@thattimc
Forked from joshuapinter/model.template.txt
Created June 21, 2019 00:45
Show Gist options
  • Save thattimc/8e7f7607e91d184af70a77a1c8df8a33 to your computer and use it in GitHub Desktop.
Save thattimc/8e7f7607e91d184af70a77a1c8df8a33 to your computer and use it in GitHub Desktop.
Rails Model Template
class [Your Class Here] < ActiveRecord::Base
##################################################################################################
### Attributes ###################################################################################
##################################################################################################
### Constants ####################################################################################
##################################################################################################
### Includes and Extensions ######################################################################
##################################################################################################
### Callbacks ####################################################################################
##################################################################################################
### Associations #################################################################################
##################################################################################################
### Validations ##################################################################################
##################################################################################################
### Scopes #######################################################################################
##################################################################################################
### Other ########################################################################################
##################################################################################################
### Class Methods ################################################################################
##################################################################################################
### Instance Methods #############################################################################
#########
protected
#########
#######
private
#######
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment