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

Harrison Wood - Week 2 Ignition Assignment - Ruby #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
###Intro to the Back End
**Required**

What is the difference between front- and back-end development?
Why do you need to install Ruby but not HTML/CSS?
**What is the difference between front- and back-end development?**
**Frontend** is the part of the web that you can see and interact with.
**backend** usually consists of three parts: a server, an application, and a database
**Why do you need to install Ruby but not HTML/CSS?**
HTML/css are what you see on every site whereas ruby is used on the backend.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HTML/CSS are interpreted by a browser. Ruby needs to be interpreted to into machine code which has to be installed


Read the [intro to back end on the Odin Project](http://www.theodinproject.com/web-development-101/introduction-to-the-back-end) description, and the [What is: Back-end web development](http://blog.generalassemb.ly/what-is-back-end-web-development/) blog post.

Expand Down Expand Up @@ -56,9 +59,12 @@ You should also be able to use **$ which git** and see the directory where yo
###Intro to Ruby
####Required

What is an "interpreted" language?<br>
What is IRB?<br>
What are Objects?<br>
**What is an "interpreted" language?<br>**

**What is IRB?<br>**
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good answer

Interactive Ruby Shell IRB allows the execution of Ruby commands with immediate response, experimenting in real-time.
**What are Objects?<br>**

What are Methods?<br>
What are Classes?<br>
What are Blocks?<br>
Expand Down