Sha256: b286251991f986c11a0fc04f43b63222c953cddd6d8a8701e356dc89d817b443
Contents?: true
Size: 448 Bytes
Versions: 54
Compression:
Stored size: 448 Bytes
Contents
module Glimmer module DataBinding module ObservableWidget # TODO see if it is worth it to eliminate duplication of method_missing # from WidgetProxy using a module def method_missing(method, *args, &block) method_name = method.to_s if can_handle_observation_request?(method_name) handle_observation_request(method_name, &block) else super end end end end end
Version data entries
54 entries across 54 versions & 2 rubygems