module RuGUI::PropertyChangedSupport
Public Class Methods
included(base)
click to toggle source
# File lib/rugui/property_changed_support.rb, line 48 def self.included(base) base.class_inheritable_accessor :property_changed_blocks base.property_changed_blocks = [] base.extend(ClassMethods) end