Method: XMP::Namespace#method_missing
- Defined in:
- lib/xmp/namespace.rb
#method_missing(method, *args) ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/xmp/namespace.rb', line 27 def method_missing(method, *args) if has_attribute?(method) (method) || standalone_attribute(method) else super end end |