Sha256: 35d1fdfb04bdb901d3b06cc0e3bf42f32f28292ceb2c824084b70abfee60b1a2
Contents?: true
Size: 660 Bytes
Versions: 21
Compression:
Stored size: 660 Bytes
Contents
module RuGUI # A base class for view helpers. class BaseViewHelper < 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('BaseViewHelper') end # Called after the view helper is registered in a view. def post_registration(view) end end end
Version data entries
21 entries across 21 versions & 2 rubygems