Method: LicenseScout::Reporter::Result#reason_string

Defined in:
lib/license_scout/reporter.rb

#reason_stringObject



62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/license_scout/reporter.rb', line 62

def reason_string
  case reason
  when :not_allowed
    "Not Allowed"
  when :flagged
    "Flagged"
  when :undetermined
    "Undetermined"
  when :missing
    "Missing"
  else
    "OK"
  end
end