class Clausewitz::Spelling::IgnoredLangResult

Public Class Methods

new(lang) click to toggle source
# File lib/clausewitz/spelling/results.rb, line 123
def initialize(lang)
  @lang = lang
end

Public Instance Methods

failed?() click to toggle source
# File lib/clausewitz/spelling/results.rb, line 135
def failed?
  false
end
failures() click to toggle source
# File lib/clausewitz/spelling/results.rb, line 139
def failures
  []
end
ignored() click to toggle source
# File lib/clausewitz/spelling/results.rb, line 131
def ignored
  []
end
ignored?() click to toggle source
# File lib/clausewitz/spelling/results.rb, line 127
def ignored?
  true
end
size() click to toggle source
# File lib/clausewitz/spelling/results.rb, line 143
def size
  0
end
to_s() click to toggle source
# File lib/clausewitz/spelling/results.rb, line 147
def to_s
  to_str
end
to_str(indent = 0) click to toggle source
# File lib/clausewitz/spelling/results.rb, line 151
def to_str(indent = 0)
  firstspacer = ' ' * indent
  "#{firstspacer}#{@lang} ignored".yellow
end