Skip to content

rails-decal/sp16-hw2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Instructions

Hey There! Welcome to homework 2 of the Rails Decal. This week we'll have covered routes (more in depth), simple ruby syntax, and basic CRUD statements.

Between each change you should refresh your browser to observe changes. If that doesn't work try restarting the server.

Per usual, Google is also your best friend (it's probably alot smarter than us).

To start:

To start everything off, fork this repository - there should be a fork button on the top right corner of the repo. Fork the repository to your own!

Run this command to clone this repository after you fork:

git clone https://github.com/your_username/sp16-hw2

Afterwards, change directory into the folder and run

rails server

This should start up your server. But wait...it's broken. What's going on? Routes? Undefined?

Alright, lets get crackin':

Question 1

Here, we're going to look into a post request.

If you look closely at the code at home.html.erb, you'll see a bunch of confusing code like this:

<%= form_tag stringify_path do... %>

Don't worry if this is confusing to you. We'll be covering forms/forms creation later on. What is important is that a form POSTS a request to a path.

Good thing we have you here to fix things up! Route a path in the routes.rb file so that when you try to load the page you route to the stringify method in pages_controller.

Now that we've gone through that hassle, we now face our second problem. If you try to submit the form, you get a views error message (Missing template pages/stringify)!

Add a view in /views/pages such that the @text variable renders "You are nothing!" if the form is blank, but prints "your_name is so your_adjective" if you submit the form. You should review how to render instance variables in views if you forget!

(Hint: every request, rails has a hash (dictionary) called params, containing fields that might be useful to you. The method blank? may also be helpful.)

Question 2

If you take a look at the /controller/concerns folder, you'll see that we've defined a class for you called Foobar. That's where we'll be spending some time to practice our ruby!

If you take a look at the pages_controller folder, we have a commented line of code

# foo = Foobar.new "baz"
# @baz = foo.bar :cat, sat: :dat, dat: :sat

Write an initialize method and an instance method in Foobar so that when you uncomment the code in the Pages Controller, the home page will contain the string "catbazdat" under "Your result". Do not hard code any strings, use the values passed into the bar function and initializer.

Question 3

Now we're going to look at more routing + creating classes!

If you look at Question 3, you'll see that we have another form! However if you submit it, you'll get an error message telling you that no route matches the request. Fix the bug! Also, change the route in routes.rb such that the /age url is directed to the person method in pages_controller, rather than the age method.

Under /controllers/concerns, create a new Person class whose initialize method accepts a name and age, and also creates an instance variable nickname that is the first four letters of their name. The person class should have an method called introduce that returns a string with the person's name and age. The personal class should also have a method birth_year that calculates what year they were born, given their age, and a method nickname that returns their nickname.

Using the name and age submitted from the form, create a person object. Modify person.html.erb such that you display a person's introduction, birth year, and nickname.

Don't worry about blank form edge cases, and don't worry about formatting.

Question 4

Create a view that can be seen if you go to 'localhost:3000/me'. Just a friendly reminder, to do this you have to create a route, a controller action, and a view. In this view put your name, and a fun fact about yourself.

How to submit

You're done! Whew. Time to submit! Run these commands

git add -A
git commit -am "whatever message you want"
git push origin master

Create a new repository in your Github account called hw2-sp16. Follow the instructions on how to push up an existing repository then submit the link here