class Controll::Assistant

Attributes

controller[R]
options[R]

Private Class Methods

controller_methods(*names) click to toggle source
# File lib/controll/assistant.rb, line 13
def self.controller_methods *names
  delegate *names, to: :controller
end
new(controller, options = {}) click to toggle source
# File lib/controll/assistant.rb, line 8
def initialize controller, options = {}
  @controller = controller
  @options = options
end