Method: Orbit::Controller.layout

Defined in:
lib/orbit/controller.rb

.layout(_layout = nil) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/orbit/controller.rb', line 10

def self.layout(_layout = nil)
  if _layout
    @layout = "#{Dir.pwd}/#{_layout}"
  else
    @layout
  end
end