Module: SupportUtils::Concerns::Utils
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/support_utils/concerns/utils.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
Instance Method Details
#save ⇒ Object
93 94 95 |
# File 'lib/support_utils/concerns/utils.rb', line 93 def save(*) @saved = super end |
#saved? ⇒ Boolean
97 98 99 |
# File 'lib/support_utils/concerns/utils.rb', line 97 def saved? @saved end |
#update_attributes(attributes) ⇒ Object
89 90 91 |
# File 'lib/support_utils/concerns/utils.rb', line 89 def update_attributes(attributes) @saved = super end |
#utils ⇒ Object
102 103 104 |
# File 'lib/support_utils/concerns/utils.rb', line 102 def utils @utils ||= SupportUtils::Core::ActiveRecord::Utils.new(self) end |