Class: Clients::Recaptcha::Response

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/clients/recaptcha/response.rb

Instance Method Summary collapse

Instance Method Details

#dataObject



10
11
12
# File 'lib/clients/recaptcha/response.rb', line 10

def data
  to_s[3..-1]
end

#success?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/clients/recaptcha/response.rb', line 6

def success?
  to_s[0..1] == "OK"
end