Class: UserAgent

Inherits:
Object
  • Object
show all
Defined in:
lib/user_agent.rb

Constant Summary collapse

VERSION =
'1.0.0'

Class Method Summary collapse

Class Method Details

.is_spider?(user_agent_string) ⇒ Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/user_agent.rb', line 4

def self.is_spider?(user_agent_string)
  user_agent_string =~ /(Baidu|bot|Google|SiteUptime|Slurp|WordPress|ZIBB|ZyBorg)/i
end