First commit
Showing
| ... | ... | @@ -5,8 +5,8 @@ ruby '2.6.5' |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| gem 'rails', '~> 6.0.1' | ||
| # Use sqlite3 as the database for Active Record | ||
| gem 'sqlite3', '~> 1.4' | ||
| # Use mysql2 as the database for Active Record | ||
| gem 'mysql2' | ||
| # Use Puma as the app server | ||
| gem 'puma', '~> 4.1' | ||
| # Use SCSS for stylesheets | ||
| ... | ... | @@ -28,6 +28,10 @@ gem 'jbuilder', '~> 2.7' |
| # Reduces boot times through caching; required in config/boot.rb | ||
| gem 'bootsnap', '>= 1.4.2', require: false | ||
| gem 'bootstrap-sass', '3.3.7' | ||
| gem 'devise' | ||
| 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] | ||
| ... | ... |
app/assets/stylesheets/custom.scss
0 → 100644
app/models/city.rb
0 → 100644
app/models/city_job.rb
0 → 100644
app/models/company.rb
0 → 100644
app/models/industry.rb
0 → 100644
app/models/industry_job.rb
0 → 100644
app/models/job.rb
0 → 100644
app/models/user.rb
0 → 100644
app/models/user_job.rb
0 → 100644
config/initializers/devise.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/devise.en.yml
0 → 100644
db/migrate/20191127075130_create_jobs.rb
0 → 100644
db/migrate/20191127075247_create_cities.rb
0 → 100644
db/schema.rb
0 → 100644
test/fixtures/cities.yml
0 → 100644
test/fixtures/city_jobs.yml
0 → 100644
test/fixtures/industries.yml
0 → 100644
test/fixtures/industry_jobs.yml
0 → 100644
test/fixtures/jobs.yml
0 → 100644
test/fixtures/users.yml
0 → 100644
test/models/city_job_test.rb
0 → 100644
test/models/city_test.rb
0 → 100644
test/models/industry_job_test.rb
0 → 100644
test/models/industry_test.rb
0 → 100644
test/models/job_test.rb
0 → 100644
test/models/user_test.rb
0 → 100644
Please
register
or
sign in
to comment