class Rvm2::Ui::Output::Fake::Element

Attributes

list[R]
message[R]
parent[R]
status[RW]
type[R]

Public Class Methods

new(message, type = :log, parent = nil) click to toggle source
# File lib/plugins/rvm2/ui/output/fake.rb, line 11
def initialize(message, type = :log, parent = nil)
  @message = message
  @type    = type
  @parent  = parent
  @list    = [] if type == :group
end