class Intrigue::Ident::Check::TeamCity

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/team_city.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "TeamCity",
      :product => "TeamCity",
      :match_details => "TeamCity Continuous Integration",
      :version => nil,
      :match_type => :content_body,
      :match_content =>  /icons\/teamcity.black.svg/i,
      :paths => ["#{url}"]
    }
  ]
end