module Momentum::ViewControllerModule::ClassMethods
Private Instance Methods
delegate(class_string)
click to toggle source
# File lib/motion-momentum-ios/controller/view_controller_module.rb, line 14 def delegate(class_string) add_related_class_macro('delegate', class_string) end
stylesheet(class_string)
click to toggle source
# File lib/motion-momentum-ios/controller/view_controller_module.rb, line 18 def stylesheet(class_string) add_related_class_macro('stylesheet', class_string) end
title(title)
click to toggle source
# File lib/motion-momentum-ios/controller/view_controller_module.rb, line 32 def title(title) send :define_method, :class_title do title end end
view(class_string)
click to toggle source
# File lib/motion-momentum-ios/controller/view_controller_module.rb, line 10 def view(class_string) add_related_class_macro('view', class_string) end