Class: Flipper::UI::Action::Breadcrumb

Inherits:
Object
  • Object
show all
Defined in:
lib/flipper/ui/action.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(text, href = nil) ⇒ Breadcrumb

Returns a new instance of Breadcrumb.



160
161
162
163
# File 'lib/flipper/ui/action.rb', line 160

def initialize(text, href = nil)
  @text = text
  @href = href
end

Instance Attribute Details

#hrefObject (readonly)

Returns the value of attribute href.



158
159
160
# File 'lib/flipper/ui/action.rb', line 158

def href
  @href
end

#textObject (readonly)

Returns the value of attribute text.



158
159
160
# File 'lib/flipper/ui/action.rb', line 158

def text
  @text
end

Instance Method Details

#active?Boolean

Returns:

  • (Boolean)


165
166
167
# File 'lib/flipper/ui/action.rb', line 165

def active?
  @href.nil?
end