module SupportUtils::Concerns::Utils

Public Instance Methods

save(*) click to toggle source
Calls superclass method
# File lib/support_utils/concerns/utils.rb, line 94
def save(*)
  @saved = super
end
saved?() click to toggle source
# File lib/support_utils/concerns/utils.rb, line 98
def saved?
  @saved
end
update_attributes(attributes) click to toggle source
Calls superclass method
# File lib/support_utils/concerns/utils.rb, line 90
def update_attributes(attributes)
  @saved = super
end
utils() click to toggle source
# File lib/support_utils/concerns/utils.rb, line 103
def utils
  @utils ||= SupportUtils::Core::ActiveRecord::Utils.new(self)
end