module RETerm::Layouts

Encapsulates all Layouts currently implemented

Public Class Methods

all() click to toggle source
# File lib/reterm/layouts.rb, line 4
def self.all
  @a ||= Layouts.constants
end
names() click to toggle source
# File lib/reterm/layouts.rb, line 8
def self.names
  @n ||= all.collect { |l| l.to_s }
end