Class: LinkChecker::Result
- Inherits:
-
Object
- Object
- LinkChecker::Result
- Defined in:
- lib/link_checker.rb
Overview
Abstract base class for representing the results of checking one URI.
Instance Attribute Summary collapse
-
#uri_string ⇒ Object
Returns the value of attribute uri_string.
Instance Method Summary collapse
-
#initialize(params) ⇒ Result
constructor
A new LinkChecker::Result object instance.
Constructor Details
#initialize(params) ⇒ Result
A new LinkChecker::Result object instance.
217 218 219 |
# File 'lib/link_checker.rb', line 217 def initialize(params) @uri_string = params[:uri_string] end |
Instance Attribute Details
#uri_string ⇒ Object
Returns the value of attribute uri_string.
212 213 214 |
# File 'lib/link_checker.rb', line 212 def uri_string @uri_string end |