ad user microposts
Showing
| ... | ... | @@ -5,6 +5,9 @@ ruby '3.0.1' |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' | ||
| gem 'rails', '~> 6.1.3', '>= 6.1.3.2' | ||
| gem 'image_processing', '~> 1.12', '>= 1.12.1' | ||
| gem 'mini_magick', '~> 4.11' | ||
| gem 'active_storage_validations', '~> 0.9.4' | ||
| gem 'bcrypt', '3.1.13' | ||
| gem 'faker', '~> 2.18' | ||
| gem 'will_paginate', '~> 3.3.0' | ||
| ... | ... | @@ -68,6 +71,7 @@ end |
| group :production do | ||
| gem 'pg', '1.1.4' | ||
| gem 'aws-sdk-s3', '~> 1.96', '>= 1.96.1', require: false | ||
| end | ||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
| ... | ... |
app/assets/stylesheets/microposts.scss
0 → 100644
app/controllers/microposts_controller.rb
0 → 100644
app/helpers/microposts_helper.rb
0 → 100644
app/models/micropost.rb
0 → 100644
app/views/microposts/_micropost.html.erb
0 → 100644
app/views/shared/_feed.html.erb
0 → 100644
app/views/shared/_micropost_form.html.erb
0 → 100644
app/views/shared/_user_info.html.erb
0 → 100644
test/fixtures/microposts.yml
0 → 100644
test/integration/users_profile_test.rb
0 → 100644
test/models/micropost_test.rb
0 → 100644
Please
register
or
sign in
to comment