Method: Wgit::Database::MongoDB#uncrawled_urls
- Defined in:
- lib/wgit/database/adapters/mongo_db.rb
#uncrawled_urls(limit: 0, skip: 0) {|url| ... } ⇒ Array<Wgit::Url>
Returns Url records that haven't yet been crawled.
266 267 268 |
# File 'lib/wgit/database/adapters/mongo_db.rb', line 266 def uncrawled_urls(limit: 0, skip: 0, &block) urls(crawled: false, limit:, skip:, &block) end |