Merge branch 'Task/6_create_crawler' into 'master'
created sample rake task for crawler See merge request !4
Showing
| ... | @@ -31,8 +31,9 @@ gem 'bootsnap', '>= 1.4.4', require: false | ... | @@ -31,8 +31,9 @@ gem 'bootsnap', '>= 1.4.4', require: false |
| group :development, :test do | group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
| gem 'pry-rails', '~> 0.3.9' | gem 'pry', '~> 0.14.1' | ||
| gem 'pry-nav', '~> 0.3.0' | # gem 'pry-nav' | ||
| gem 'pry-rails' | |||
| end | end | ||
| group :development do | group :development do | ||
| ... | @@ -44,6 +45,7 @@ group :development do | ... | @@ -44,6 +45,7 @@ group :development do |
| gem 'listen', '~> 3.3' | gem 'listen', '~> 3.3' | ||
| # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
| gem 'spring' | gem 'spring' | ||
| gem 'rubocop-rails', '~> 2.11', '>= 2.11.3' | |||
| end | end | ||
| group :test do | group :test do | ||
| ... | @@ -57,3 +59,5 @@ end | ... | @@ -57,3 +59,5 @@ end |
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
| gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||
| gem 'slim-rails', '~> 3.2' | gem 'slim-rails', '~> 3.2' | ||
| gem 'nokogiri', '~> 1.11', '>= 1.11.7' | |||
| gem 'httparty', '~> 0.18.1' | |||
| \ No newline at end of file |
lib/tasks/web_crawler.rake
0 → 100644
Please
register
or
sign in
to comment