Skip to content

Instantly share code, notes, and snippets.

@jsmestad
Last active August 29, 2015 14:07
Show Gist options
  • Save jsmestad/80822312c3f57876cd85 to your computer and use it in GitHub Desktop.
Save jsmestad/80822312c3f57876cd85 to your computer and use it in GitHub Desktop.
module ScopeConcern
extend ActiveSupport::Concern
included do
superclass.send(:define_singleton_method, "#{self.model_name.demodulize.underscore}_records") do
where(type: "#{self.class.name}")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment