Skip to content

Instantly share code, notes, and snippets.

@lafave
Created June 16, 2014 17:54
Show Gist options
  • Save lafave/f36cb68c35cce032758b to your computer and use it in GitHub Desktop.
Save lafave/f36cb68c35cce032758b to your computer and use it in GitHub Desktop.
query_object_execute_concern.rb
# /app/models/concerns/query_object.rb
module QueryObject
extend ActiveSupport::Concern
module ClassMethods
# Convenience method to execute a query object.
def execute(*args)
new(*args).execute
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment