Module: FileLike
- Defined in:
- lib/active_support/core_ext/hash/conversions.rb
Overview
This module exists to decorate files deserialized using Hash.from_xml with the original_filename
and content_type
methods.
Instance Attribute Summary collapse
Instance Attribute Details
#content_type ⇒ Object
36 37 38 |
# File 'lib/active_support/core_ext/hash/conversions.rb', line 36 def content_type @content_type || 'application/octet-stream' end |
#original_filename ⇒ Object
32 33 34 |
# File 'lib/active_support/core_ext/hash/conversions.rb', line 32 def original_filename @original_filename || 'untitled' end |