Class: Goose::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/goose/config.rb

Instance Attribute Summary collapse

Instance Attribute Details

#active_optionsObject



11
12
13
# File 'lib/goose/config.rb', line 11

def active_options
  @active_options ||= {:class => 'active'}
end


15
16
17
# File 'lib/goose/config.rb', line 15

def breadcrumb_linker
  @breadcrumb_linker ||= lambda { |view, *args| view.link_to(*args) }
end

#inactive_optionsObject



19
20
21
# File 'lib/goose/config.rb', line 19

def inactive_options
  @inactive_options ||= {}
end

#wrapper_tagObject



7
8
9
# File 'lib/goose/config.rb', line 7

def wrapper_tag
  @wrapper_tag ||= :li
end