Releases: esbanarango/acts_as_inheritable
Releases · esbanarango/acts_as_inheritable
0.7.0 V
0.6.0 V
use_update
option for inherit_attributes.
0.5.0 V
0.4.0 V
Check for blank?
instead of empty?
on options.
0.3.0 V
Fix issue where associations
OR attributes
may be nil.
0.1.0V
Cleaner way to use acts_as_inheritable
.
class Person < ActiveRecord::Base
acts_as_inheritable attributes: %w(favorite_color last_name soccer_team),
associations: %w(shoes pictures clan)
end
instead of
class Person < ActiveRecord::Base
acts_as_inheritable
# Constants
INHERITABLE_ATTRIBUTES = %w(favorite_color last_name soccer_team)
INHERITABLE_ASSOCIATIONS = %w(shoes pictures clan)
end
First version
0.0.1 Gem badge.