class Intrigue::Ident::Check::Pantheon

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/pantheon.rb, line 6
def generate_checks(url)
  [
    {
      :type => "service",
      :vendor => "Pantheon",
      :product => "Pantheon",
      :tags => ["CMS"],
      :match_details => "x-pantheon-site header",
      :version => nil,
      :match_type => :content_headers,
      :match_content =>  /x-pantheon-site/,
      :paths => ["#{url}"]
    }

  ]
end