Merge branch 'feature/import_data' into 'master'
Feature/import data See merge request !6
Showing
| ... | ... | @@ -24,6 +24,8 @@ gem 'kaminari' |
| gem 'sunspot_rails' | ||
| gem 'sunspot_solr' | ||
| gem 'devise' | ||
| gem 'activerecord-import' | ||
| gem 'config' | ||
| # Use Redis adapter to run Action Cable in production | ||
| # gem 'redis', '~> 4.0' | ||
| # Use Active Model has_secure_password | ||
| ... | ... | @@ -38,6 +40,8 @@ gem 'bootsnap', '>= 1.4.2', require: false |
| group :development, :test do | ||
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
| gem 'pry' | ||
| gem 'annotate' | ||
| end | ||
| group :development do | ||
| ... | ... |
app/controllers/cities_controller.rb
0 → 100644
app/controllers/companies_controller.rb
0 → 100644
app/controllers/industries_controller.rb
0 → 100644
app/controllers/jobs_controller.rb
0 → 100644
app/services/import.rb
0 → 100644
app/services/job_csv.rb
0 → 100644
app/services/jobs_import.rb
0 → 100644
app/views/cities/_city.html.erb
0 → 100644
app/views/cities/index.html.erb
0 → 100644
app/views/companies/_company.html.erb
0 → 100644
app/views/companies/index.html.erb
0 → 100644
app/views/industries/_industry.html.erb
0 → 100644
app/views/industries/index.html.erb
0 → 100644
app/views/jobs/_job.html.erb
0 → 100644
app/views/jobs/index.html.erb
0 → 100644
config/initializers/config.rb
0 → 100644
config/settings.yml
0 → 100644
config/settings/development.yml
0 → 100644
config/settings/production.yml
0 → 100644
config/settings/test.yml
0 → 100644
db/migrate/20191205090113_add_code_to_job.rb
0 → 100644
lib/.~lock.jobss.csv#
0 → 100644
lib/jobss.csv
0 → 100644
This diff is collapsed.
Click to expand it.
lib/tasks/auto_annotate_models.rake
0 → 100644
lib/tasks/task.rake
0 → 100644
test/controllers/cities_controller_test.rb
0 → 100644
test/controllers/jobs_controller_test.rb
0 → 100644
Please
register
or
sign in
to comment