Method: PowerBI::Object#method_missing
- Defined in:
- lib/power-bi/object.rb
#method_missing(method, *args, &block) ⇒ Object (private)
51 52 53 54 55 |
# File 'lib/power-bi/object.rb', line 51 def method_missing(method, *args, &block) get_attributes.fetch(method.to_sym) do raise UnkownAttributeError.new "Unknown attribute #{method}" end end |