class Intrigue::Ident::Check::Heroku

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/heroku.rb, line 6
def generate_checks(url)
  [
    {
      :type => "service",
      :vendor => "Heroku",
      :product =>"Heroku",
      :match_details =>"Heroku",
      :tags => ["hosting_provider"],
      :version => nil,
      :match_type => :content_body,
      :match_content =>  /herokucdn.com\/error-pages\/no-such-app.html/,
      :hide => true,
      :examples => ["http://54.209.64.71:80"],
      :paths => ["#{url}"]
    }
  ]
end