Merge branch 'design-database' into 'master'
Design database See merge request !2
Showing
| ... | ... | @@ -3,6 +3,8 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } |
| ruby '2.5.1' | ||
| gem 'devise', '4.4.3' | ||
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| gem 'rails', '~> 5.2.0' | ||
| # Use mysql as the database for Active Record | ||
| ... | ... | @@ -42,9 +44,10 @@ group :development, :test do |
| gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
| gem 'rspec-rails' | ||
| gem 'capybara', '>= 2.15', '< 4.0' | ||
| gem 'rubocop', '0.57.1', require: false | ||
| gem 'factory_girl_rails', '4.9.0' | ||
| gem 'faker', '1.8.7' | ||
| end | ||
| group :development do | ||
| ... | ... |
app/models/city.rb
0 → 100644
app/models/company.rb
0 → 100644
app/models/industry.rb
0 → 100644
app/models/job.rb
0 → 100644
app/models/user.rb
0 → 100644
app/views/devise/confirmations/new.html.erb
0 → 100644
app/views/devise/passwords/edit.html.erb
0 → 100644
app/views/devise/passwords/new.html.erb
0 → 100644
app/views/devise/registrations/edit.html.erb
0 → 100644
app/views/devise/registrations/new.html.erb
0 → 100644
app/views/devise/sessions/new.html.erb
0 → 100644
app/views/devise/shared/_links.html.erb
0 → 100644
app/views/devise/unlocks/new.html.erb
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/20180607031349_create_cities.rb
0 → 100644
db/migrate/20180607054848_create_jobs.rb
0 → 100644
db/schema.rb
0 → 100644
spec/factories/city.rb
0 → 100644
spec/factories/company.rb
0 → 100644
spec/factories/industry.rb
0 → 100644
spec/factories/job.rb
0 → 100644
spec/factories/user.rb
0 → 100644
spec/models/city_spec.rb
0 → 100644
spec/models/company_spec.rb
0 → 100644
spec/models/industry_spec.rb
0 → 100644
spec/models/job_spec.rb
0 → 100644
spec/models/user_spec.rb
0 → 100644