Module: Sequel::Plugins::StaticCache::InstanceMethods

Defined in:
lib/sequel/plugins/static_cache.rb

Instance Method Summary collapse

Instance Method Details

#before_destroyObject

Disallowing destroying the object unless the :frozen=>false option was used.



202
203
204
205
# File 'lib/sequel/plugins/static_cache.rb', line 202

def before_destroy
  return false unless model.static_cache_allow_modifications?
  super
end

#before_saveObject

Disallowing saving the object unless the :frozen=>false option was used.



208
209
210
211
# File 'lib/sequel/plugins/static_cache.rb', line 208

def before_save
  return false unless model.static_cache_allow_modifications?
  super
end