Skip to content

Instantly share code, notes, and snippets.

View jdsiegel's full-sized avatar

Jeff Siegel jdsiegel

  • The Nation Network
  • Edmonton
View GitHub Profile
@jdsiegel
jdsiegel / Item.rb
Created August 23, 2011 17:02 — forked from MarkBennett/Item.rb
DOES NOT WORK! Implementing ActiveRecord named scopes with a module
class Item < ActiveRecord::Base
include SpecialScopes
end
# OR
class Item < ActiveRecord::Base
extend SharedScopesAsMethods
end