Class: StudyEngine::ApplicationController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/study_engine/application_controller.rb

Class Method Summary collapse

Class Method Details

.expose(*methods) ⇒ Object



6
7
8
9
10
11
# File 'app/controllers/study_engine/application_controller.rb', line 6

def self.expose *methods
  methods.each do |method|
    attr_reader method
    helper_method method
  end
end