Feature crawler data
Showing
| ... | @@ -28,7 +28,8 @@ gem 'jbuilder', '~> 2.5' | ... | @@ -28,7 +28,8 @@ gem 'jbuilder', '~> 2.5' |
| # Use Redis adapter to run Action Cable in production | # Use Redis adapter to run Action Cable in production | ||
| # gem 'redis', '~> 3.0' | # gem 'redis', '~> 3.0' | ||
| # Use ActiveModel has_secure_password | # Use ActiveModel has_secure_password | ||
| # gem 'bcrypt', '~> 3.1.7' | gem 'bcrypt', '~> 3.1.7' | ||
| gem 'whenever' | |||
| # Use Capistrano for deployment | # Use Capistrano for deployment | ||
| # gem 'capistrano-rails', group: :development | # gem 'capistrano-rails', group: :development | ||
| ... | @@ -48,6 +49,8 @@ group :development do | ... | @@ -48,6 +49,8 @@ group :development do |
| # 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 'spring-watcher-listen', '~> 2.0.0' | gem 'spring-watcher-listen', '~> 2.0.0' | ||
| gem 'better_errors' | |||
| gem 'binding_of_caller' | |||
| end | 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 | ||
| ... | ... |
app/models/apply.rb
0 → 100644
app/models/area.rb
0 → 100644
app/models/category.rb
0 → 100644
app/models/city.rb
0 → 100644
app/models/company.rb
0 → 100644
app/models/contact.rb
0 → 100644
app/models/favorite.rb
0 → 100644
app/models/history.rb
0 → 100644
app/models/job.rb
0 → 100644
app/models/job_category.rb
0 → 100644
app/models/job_type.rb
0 → 100644
app/models/user.rb
0 → 100644
config/schedule.rb
0 → 100644
db/migrate/20170628014259_create_areas.rb
0 → 100644
db/migrate/20170628014549_create_contacts.rb
0 → 100644
db/migrate/20170628014736_create_users.rb
0 → 100644
db/migrate/20170628014941_create_cities.rb
0 → 100644
db/migrate/20170628015337_create_jobs.rb
0 → 100644
db/migrate/20170628020034_create_applies.rb
0 → 100644
db/schema.rb
0 → 100644
lib/tasks/crawler_data.rake
0 → 100644
test/fixtures/applies.yml
0 → 100644
test/fixtures/areas.yml
0 → 100644
test/fixtures/categories.yml
0 → 100644
test/fixtures/cities.yml
0 → 100644
test/fixtures/companies.yml
0 → 100644
test/fixtures/contacts.yml
0 → 100644
test/fixtures/favorites.yml
0 → 100644
test/fixtures/histories.yml
0 → 100644
test/fixtures/job_categories.yml
0 → 100644
test/fixtures/job_types.yml
0 → 100644
test/fixtures/jobs.yml
0 → 100644
test/fixtures/users.yml
0 → 100644
test/models/apply_test.rb
0 → 100644
test/models/area_test.rb
0 → 100644
test/models/category_test.rb
0 → 100644
test/models/city_test.rb
0 → 100644
test/models/company_test.rb
0 → 100644
test/models/contact_test.rb
0 → 100644
test/models/favorite_test.rb
0 → 100644
test/models/history_test.rb
0 → 100644
test/models/job_category_test.rb
0 → 100644
test/models/job_test.rb
0 → 100644
test/models/job_type_test.rb
0 → 100644
test/models/user_test.rb
0 → 100644
Please
register
or
sign in
to comment