Sha256: 28a6c16ce7ea8a37be1b8f20ae5f2e9d811faf0df97b1bfe9b517612e950bb43
Contents?: true
Size: 617 Bytes
Versions: 15
Compression:
Stored size: 617 Bytes
Contents
module RuGUI class BaseModel < BaseObject include RuGUI::ObservablePropertySupport include RuGUI::LogSupport def initialize(observable_properties_values = {}) initialize_observable_property_support(observable_properties_values) end # This is included here so that the initialize method is properly updated. include RuGUI::InitializeHooks # Returns the framework_adapter for this class. def framework_adapter framework_adapter_for('BaseModel') end # Called after the model is registered in a controller. def post_registration(controller) end end end
Version data entries
15 entries across 15 versions & 2 rubygems