RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Using the Registry Pattern in Rails

The Registry pattern is a way to look up collaborator objects without hardcoding their class names and initialization in the calling code. Here’s a way to apply this pattern in Rails.

Comments

Starting from the example, which is the difference with Factory?

Good question! My take: A Registry is a way to locate objects, not necessarily create them. And, Registries are used as a central place to locate many different types of objects, whereas a Factory deals with a single type.

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in