module ActiveInteractor::Models::InstanceMethods

Instance methods needed for a {Context::Base context} class to function properly.

@private @author Aaron Allen <hello@aaronmallen.me> @since 1.0.0

Public Class Methods

new(*) click to toggle source
Calls superclass method
# File lib/active_interactor/models.rb, line 16
def initialize(*)
  @attributes = self.class._default_attributes&.deep_dup
  super
end