class Flipper::UI::Action::Breadcrumb

Attributes

href[R]
text[R]

Public Class Methods

new(text, href = nil) click to toggle source
# File lib/flipper/ui/action.rb, line 207
def initialize(text, href = nil)
  @text = text
  @href = href
end

Public Instance Methods

active?() click to toggle source
# File lib/flipper/ui/action.rb, line 212
def active?
  @href.nil?
end