Class: Tabulous::Tabsets

Inherits:
Object
  • Object
show all
Defined in:
lib/tabulous/tabsets.rb

Class Method Summary collapse

Class Method Details

.add(tabset_name, tabset) ⇒ Object



6
7
8
9
# File 'lib/tabulous/tabsets.rb', line 6

def add(tabset_name, tabset)
  @tabsets ||= {}
  @tabsets[tabset_name.to_s] = tabset
end

.get(tabset_name) ⇒ Object



11
12
13
# File 'lib/tabulous/tabsets.rb', line 11

def get(tabset_name)
  @tabsets[tabset_name.to_s]
end