class Capistrano::Doctor::OutputHelpers::Row

Attributes

color[R]
values[R]

Public Class Methods

new() click to toggle source
# File lib/capistrano/doctor/output_helpers.rb, line 12
def initialize
  @values = []
end

Public Instance Methods

<<(value) click to toggle source
# File lib/capistrano/doctor/output_helpers.rb, line 16
def <<(value)
  values << value
end
yellow() click to toggle source
# File lib/capistrano/doctor/output_helpers.rb, line 20
def yellow
  @color = :yellow
end