##LAB2
- Creation of static pages for our social network: home and contact
rails generate controller Pages home contact
- Creation of the "About" page, by editing the files:
-
config/routes.rb -
app/controllers/pages_controller.rb
- Adding title to HTML files: "Room5T | Page name"
-
by defining a
@titlevariable inapp/controllers/pages_controller.rb -
by including it in the title present in
app/views/layouts/application.html.erb
- Create an helper to only show the title "Room5T" if the
@titlevariable is nil
##LAB5 5) Improve the helper, by using symbols instead of instance variables
- Add the Bootstrap CSS Framework:
-
update the gemfile to download and install
bootstrap-sass -
bundle install -
create a new file for custom CSS, such as
custom.css.scss; fill its content with@import "bootstrap"; -
add some partials to separate logical units
-
add custom Sassy CSS
##LAB6 7) Add routes for existing pages and delete or rename the page public/index.html
- Create, stylish and add proper named routes to:
-
the help page
-
a User controller, with
newas an action (and\signupas relative URL)
##LAB7
9) Install some useful gems: annotate and bcrypt-ruby
- Generate a User model with two attributes, name and email:
rails generate model User name:string email:string
- Migrate the model to a DB:
bundle exec rake db:migrate
-
[If you are using Rails version 3.2.1 or earlier] Add the line
attr_accessible :name, :emailto the User model (theuser.rbfile) -
Add some validations for the model attributes
-
Assure the uniqueness to the email attribute, by acting on the DB
##LAB8 15) Create a migration for the password digest (then, migrate it):
rails generate migration add_password_digest_to_users password_digest:string
-
Add password and password_confirmation to user's model
-
Create a new user in the DB (probably this change is not under version control)
##LAB9
18) Show some useful debug information in the web pages by adding the debug method to application.html.erb
- add some custom stylesheet rules for debug purposes
- Add a route for handling the User resource:
resources :users
- Add a new page for showing a user (otherwise, the added route does not show anything...):
show.html.erb
- add some information to the page and some stylesheet rules
-
Add an helper to connect with the Gravatar service
-
Add the sign up form by using the helper method
form_for
-
add some stylesheet rules to the form
-
add the
@uservariable to thenewaction in the UsersController
-
Add the
createaction to the UsersController to handle the creation of new users by using the sign up form -
Add signup error messages in the
_error_messages.html.erbshared partial -
Add the flash in the
application.html.erb, i.e., a message that appears on a page and then dissappears upon visiting a second page or on page reload
##LAB10 26) Add sessions for sign in/out; realized with a controller and a cookie for the model
-
we implemented a permanent sign in: the user will be logged out only if she'll execute an explicit sign out
-
add a secure remember token on the model for each user and store it as a permanent cookie rather than one that expires on browser close
-
add bootstrap.js to the app assets
-
update the existing users to support the new functionalities
-
Add the functionalities for editing, showing and deleting users
-
Add some fake users to the site
-
add the gem named faker
-
add a rake task to generate fake users (
sample_data.rake) -
bundle exec rake db:populate
- Add pagination functionalities for showing all the users
- add the gems named gem will_paginate and bootstrap-will_paginate
- Create administrative users: the ones who can delete other registered users
-
create a migration
add_admin_to_users -
update the existing users
##LAB 11
- Create a Micropost model and its migration
-
rails generate model Micropost content:string user_id:integer -
add a index in order to retrieve all the microposts associated with a given user id in reverse order of creation
-
since we want that a micropost belongs to a specific existing user, we must create a new micropost using micropost.user.create instead of Micropost.create. In this way, each user has her micropost and each micropost belong to a specific user.
-
add a descendent order for the microposts
-
Automatically destroy all the microposts of a destroyed user
-
Show the micropost in the single user page
-
Update the
sample_datarake task to insert some fake microposts for the first six users -
Add some stylesheet rules for visualizing the microposts
-
Add the possibility to create a micropost via web interface
-
add a signed_in helper (in the session helpers) to assure that no micropost will be created without a user signed in
-
update controllers and error partial to handle micropost creation
- Add the destroy functionality for microposts
##LAB 12
- Add a new model, Relationship, to handle following mechanism with:
-
two (integer) fields,
follower_idefollowed_id -
three indexes, two for efficiency and one to ensure that a user can't follow another user more than once
-
Update the User model for following mechanism (
has_manyand follow/unfollow methods) and the Relationship model (belongs_toand some validations) -
Update the
populaterake task -
Update the interface for handling following mechanism
-
update the users route
-
add a partial for displaying follower stats
-
add a partial for the follow/unfollow button and update the routes for user relationships
-
add followers and following pages
-
add a working follow button (by using jQuery): edit the relationship controller, the follow/unfollow partials and add two js.erb files
- Extra: finish the implementation of the status feed
- Add a (simple) users' search form only for logged in users...
-
Add a gem for private messaging:
simple-private-messages -
Partially implemented a private messaging system: you can now send a message to another user and read the received messages