class Scraypa::UserAgentAbstract

Public Class Methods

new(*args) click to toggle source
# File lib/scraypa/user_agent/user_agent_abstract.rb, line 3
def initialize(*args)

end

Public Instance Methods

list() click to toggle source
# File lib/scraypa/user_agent/user_agent_abstract.rb, line 11
def list
  raise NotImplementedError, 'list action not implemented'
end
user_agent() click to toggle source
# File lib/scraypa/user_agent/user_agent_abstract.rb, line 7
def user_agent
  raise NotImplementedError, 'user_agent action not implemented.'
end