-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: check for empty or malformed urls
- Loading branch information
1 parent
0710b3b
commit 2da57d9
Showing
2 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace :crawl_companies do | ||
desc "Crawl companies list for ats boards." | ||
task crawl: :environment do | ||
Crawlers::CompanyListCrawler.new.crawl_list | ||
Crawlers::CompanyListCrawler.new.crawl_list(0, nil) | ||
end | ||
end |