Pranav Chaturvedi
Pranav Chaturvedi
Make rake task namespace to configurable so conflict with `ActiveRecord` rake tasks can be avoided
When an activity is defined, it is allowed to specify the actor/object classes as symbols. Even the example in the readme is ``` ruby activity :new_photo do actor :user, :cache...
This commit fixes issue #42
To replicate, consider the parent `Plant` model which has many child `Site` models: ``` ruby class Plant field :name, type: String, default: 'something' has_many :sites, dependent: :nullify alize_to :sites, :name...