Skip to content

Instantly share code, notes, and snippets.

@rbarazi
Created March 8, 2010 23:42
Show Gist options
  • Save rbarazi/325944 to your computer and use it in GitHub Desktop.
Save rbarazi/325944 to your computer and use it in GitHub Desktop.
[Beginning Rail 3] Listing 5-20. Named scopes declarations in app/models/article.rb
class Article < ActiveRecord::Base
validates :title, :presence => true
validates :body, :presence => true
belongs_to :user
has_and_belongs_to_many :categories
has_many :comments
scope :published, where("articles.published_at IS NOT NULL")
scope :draft, where("articles.published_at IS NULL")
def long_title
"#{title} - #{published_at}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment