Make a basic User model (including secure passwords)
Showing
.rubocop.yml
0 → 100644
| ... | @@ -64,4 +64,5 @@ end | ... | @@ -64,4 +64,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 'bootstrap-sass', '~> 3.3', '>= 3.3.7' | gem 'bootstrap-sass', '~> 3.3', '>= 3.3.7' | ||
| \ No newline at end of file | gem 'bcrypt', '~> 3.1', '>= 3.1.12' | ||
| \ No newline at end of file |
app/models/user.rb
0 → 100644
db/migrate/20180801025405_create_users.rb
0 → 100644
db/schema.rb
0 → 100644
test/fixtures/users.yml
0 → 100644
test/models/user_test.rb
0 → 100644
Please
register
or
sign in
to comment