Search code examples
ruby-on-rails-3observer-pattern

Should I store my Rails 3 observers in the app/models directory?


or do they belong in their own place?


Solution

  • If you generate one (e.g., "rails g observer Test") that's where it goes, so I'd stick with the convention.