Class: Ident::Response::BasicResponse
- Inherits:
-
Object
- Object
- Ident::Response::BasicResponse
- Defined in:
- lib/ident.rb
Overview
This is the blankslate response which ensures that both kind of responses respond to all required methods. You should never have to work with this class directly.
Instance Method Summary collapse
- #charset ⇒ Object
-
#error? ⇒ Boolean
Is the response the result of an error?.
- #os ⇒ Object
- #userid ⇒ Object
Instance Method Details
#charset ⇒ Object
14 |
# File 'lib/ident.rb', line 14 def charset; nil; end |
#error? ⇒ Boolean
Is the response the result of an error?
12 |
# File 'lib/ident.rb', line 12 def error?; false; end |
#os ⇒ Object
13 |
# File 'lib/ident.rb', line 13 def os; nil; end |
#userid ⇒ Object
15 |
# File 'lib/ident.rb', line 15 def userid; nil; end |