Skip to content

Instantly share code, notes, and snippets.

@uberllama
uberllama / gist:9e69529b0d835902f33d
Created April 29, 2015 01:22
relation inheritance
class PostQuery
attr_accessor :relation
ALLOWED_SORT_ATTRS = ["title", "updated_at"]
# @example PostQuery.new.relation.recent.sorted("title", "DESC")
# @example PostQuery.new(user.posts).relation.recent.sorted("title", "DESC")
#
def initialize(relation = nil)