Module: BetterStorage::Patches::S3ServiceProxy
- Defined in:
- lib/better_storage/patches/s3_service_proxy.rb
Instance Method Summary collapse
Instance Method Details
#delete(key) ⇒ Object
5 6 7 8 |
# File 'lib/better_storage/patches/s3_service_proxy.rb', line 5 def delete(key) return false if should_protect?(key) super end |
#delete_prefixed(prefix) ⇒ Object
10 11 12 13 |
# File 'lib/better_storage/patches/s3_service_proxy.rb', line 10 def delete_prefixed(prefix) return false if should_protect?(prefix) super end |