Class: Trifle::Docs::Harvester::Sieve
- Inherits:
-
Object
- Object
- Trifle::Docs::Harvester::Sieve
- Defined in:
- lib/trifle/docs/harvester.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#file ⇒ Object
readonly
Returns the value of attribute file.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path:, file:) ⇒ Sieve
constructor
A new instance of Sieve.
- #match? ⇒ Boolean
- #to_url ⇒ Object
Constructor Details
#initialize(path:, file:) ⇒ Sieve
Returns a new instance of Sieve.
346 347 348 349 |
# File 'lib/trifle/docs/harvester.rb', line 346 def initialize(path:, file:) @path = path @file = file end |
Instance Attribute Details
#file ⇒ Object (readonly)
Returns the value of attribute file.
344 345 346 |
# File 'lib/trifle/docs/harvester.rb', line 344 def file @file end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
344 345 346 |
# File 'lib/trifle/docs/harvester.rb', line 344 def path @path end |
Instance Method Details
#match? ⇒ Boolean
351 352 353 |
# File 'lib/trifle/docs/harvester.rb', line 351 def match? raise 'Not Impelemented' end |
#to_url ⇒ Object
355 356 357 |
# File 'lib/trifle/docs/harvester.rb', line 355 def to_url raise 'Not Impelemented' end |