Skip to content

Instantly share code, notes, and snippets.

View bthooper's full-sized avatar

Bryan Hooper bthooper

View GitHub Profile
@bthooper
bthooper / arel_help.rb
Created September 12, 2018 15:59
Trying to understand arel better.....
class Boat < ActiveRecord::Base
belongs_to :captain
has_many :boat_classifications
has_many :classifications, through: :boat_classifications
def self.first_five
self.limit(5)
end
def self.dinghy