Add user microposts. image upload production not available
Showing
| ... | @@ -59,6 +59,8 @@ source 'https://rubygems.org' | ... | @@ -59,6 +59,8 @@ source 'https://rubygems.org' |
| gem 'rails', '5.1.4' | gem 'rails', '5.1.4' | ||
| gem 'bcrypt', '3.1.12' | gem 'bcrypt', '3.1.12' | ||
| gem 'faker', '1.7.3' | gem 'faker', '1.7.3' | ||
| gem 'carrierwave', '1.2.2' | |||
| gem 'mini_magick', '4.7.0' | |||
| gem 'will_paginate', '3.1.6' | gem 'will_paginate', '3.1.6' | ||
| gem 'bootstrap-will_paginate', '1.0.0' | gem 'bootstrap-will_paginate', '1.0.0' | ||
| gem 'bootstrap-sass', '3.3.7' | gem 'bootstrap-sass', '3.3.7' | ||
| ... | @@ -92,6 +94,7 @@ end | ... | @@ -92,6 +94,7 @@ end |
| group :production do | group :production do | ||
| gem 'pg', '0.18.4' | gem 'pg', '0.18.4' | ||
| gem 'fog', '1.42' | |||
| 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/assets/javascripts/microposts.coffee
0 → 100644
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/uploaders/picture_uploader.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
config/initializers/skip_image_resizing.rb
0 → 100644
3.7 KB
3.96 KB
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