class Bosh::Director::Line

Constants

INDENT

Public Instance Methods

full_indent() click to toggle source
# File lib/bosh/director/manifest/diff_lines.rb, line 9
def full_indent
  indent + text[/^ */].size / INDENT
end
to_s() click to toggle source
# File lib/bosh/director/manifest/diff_lines.rb, line 5
def to_s
  "#{' ' * INDENT * indent}#{text}"
end