Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Danebook #35

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
32bc848
Danebook day 1. Create session, models users and profile
lynchd2 Aug 11, 2016
08cfd03
Add postgresq;
lynchd2 Aug 11, 2016
94f1373
Finish homepage and start about page
lynchd2 Aug 12, 2016
aecbd0f
Finish edit and about page
lynchd2 Aug 12, 2016
5a0f89a
Finish posts, added comments model
lynchd2 Aug 12, 2016
5f88454
Add uniqueness to email
lynchd2 Aug 12, 2016
7b12cb6
Fix looking at other people's profiles
lynchd2 Aug 13, 2016
4a88636
Fix search query for first name and last name
lynchd2 Aug 13, 2016
2148c29
Enhance search for multiple words and partial spellings
lynchd2 Aug 13, 2016
2e81551
Allow other users to post on other users walls
lynchd2 Aug 14, 2016
a836fbe
Implented a very weak like and comment
lynchd2 Aug 15, 2016
7711c4f
Add tests for User model and Post model
lynchd2 Aug 15, 2016
401f3f6
Add all_comments and all_posts for User and Post model
lynchd2 Aug 16, 2016
e09b1ad
Add like, delete, create_post, sign_in features. Stuck on edit_profil…
lynchd2 Aug 16, 2016
b19352d
Add photos, clean up CSS on user timeline page
lynchd2 Aug 19, 2016
29f02e0
Add emails for commenting, likes and posts and photo show/index pages
lynchd2 Aug 19, 2016
ea2c49e
Add friend requests
lynchd2 Aug 22, 2016
aff507e
add redirect for bad URLs
lynchd2 Aug 22, 2016
3f6b76f
Add configuration for production
lynchd2 Aug 22, 2016
b370a38
Comment out email
lynchd2 Aug 22, 2016
661116c
Add sendgrid
lynchd2 Aug 22, 2016
a4d7ac4
Fix looking at photo's bug
lynchd2 Aug 22, 2016
9d65e5d
No mailer for production
lynchd2 Aug 22, 2016
8e0b30f
Add friend index to user dashboard
lynchd2 Sep 6, 2016
3c19946
Add color
lynchd2 Sep 21, 2016
118e66e
AJAX for posts create
lynchd2 Sep 21, 2016
610d905
Posting posts and deleting posts AJAX works!
lynchd2 Sep 21, 2016
3ca7e97
Prep comment and like AJAX
lynchd2 Sep 21, 2016
a8e9de5
Successfully delete comments using AJAX
lynchd2 Sep 21, 2016
3e56d19
Add destroy action in comments controller
lynchd2 Sep 21, 2016
e82aa25
Add comments work for AJAX, need to refactor
lynchd2 Sep 22, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore Byebug command history file.
.byebug_history

# Ignore application configuration
/config/application.yml

2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--require spec_helper
85 changes: 85 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
source 'https://rubygems.org'

gem 'delayed_job_active_record'

gem 'figaro'

gem 'aws-sdk'

gem 'paperclip'

gem 'rails-controller-testing'

gem 'factory_girl_rails'

gem 'rspec-rails'

gem 'will_paginate'

gem 'carrierwave'

gem 'better_errors'

gem 'hirb'

gem 'bootstrap'

gem 'bootstrap-sass'

gem 'binding_of_caller'

gem 'faker'

gem 'pg'

gem 'selenium-webdriver'

gem 'bcrypt'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.0'
# Use sqlite3 as the database for Active Record
#gem 'sqlite3'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'shoulda-matchers'
gem 'capybara'
gem 'launchy'
gem 'letter_opener'
end

group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Loading