rom-rb / rom

Data mapping and persistence toolkit for Ruby
https://rom-rb.org
MIT License
2.08k stars 161 forks source link

Plugin API for repository #536

Closed solnic closed 5 years ago

solnic commented 5 years ago

Repository component doesn't support a plugin API yet, so we should add it just like it works with other components.

⚠️ Prerequisite #535

Examples

class UserRepo < ROM::Repository[:users]
  use :my_awesome_plugin

  my_awesome_plugin :do_magic
end