Module: Mozart::Composable

Included in:
Environment
Defined in:
lib/mozart/composable.rb

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *a, &b) ⇒ Object (private)



23
24
25
26
27
# File 'lib/mozart/composable.rb', line 23

def method_missing(m, *a, &b)
  return super unless features.receives?(m)

  features.dispatch(m, *a, &b)
end