Method: Shattered::View.append_features
- Defined in:
- lib/shattered_view/shattered_view.rb
.append_features(base) ⇒ Object
7 8 9 10 11 12 13 14 |
# File 'lib/shattered_view/shattered_view.rb', line 7 def self.append_features(base) super base.extend(ClassMethods) base.send(:include, InstanceMethods) base.send(:include, PreInitialize) base.send(:before_init_call, "setup_variables") base.send(:include, Unload) end |