I wondered that I can call before_create in a model class altough this method is not in the ActiveRecord::Base class. So I learned that this method was mixed in. But the documentation says nothing about mixins.
How can I find out which mixins are included in a Rails class (without looking into the source)?
Usually I use the included_modules method in the rails console.