class Intrigue::Ident::Check::Groovy

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/groovy.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Groovy",
      :product =>"Groovy",
      :match_details =>"Groovy error page",
      :match_type => :content_body,
      :version => nil,
      :match_content =>  /Error processing GroovyPageView:/i,
      :paths => ["#{url}"]
    }
  ]
end