Ruby
Goal
To teach you Ruby we are going to explain the basic building blocks used in the Ruby language and allow you reinforce what you've learned through challenges.
When you have completed this curriculum you should understand:
- The command line and why we use it
- How to run your Ruby code interactively (irb) or from a file
- Simple types like numbers, strings, and booleans
- Data structures like arrays and hashes
- Object concepts like Classes
Requirements
We're going to be working with:
- Ruby
- A command line program
- A text editor of your choice
Everything should be set up the night before during our Installfest. Please ensure you have everything working before you show up for the workshop.
You can verify that you have everything working by trying this out in your terminal:
$ irb >> 1 + 2 => 3 $
If you can do that, you are probably good to go.
Format
Each lesson will look like this:
Step Title
Goal:
Description of the current step.
Red because big goals are scary.
Steps:
steps to take.
def code_to_write 1 + 1 end
Yellow because we've gotten it done, but we have no clue what's going on.
Challenges
A list of activities to try to reinforce the concepts learned in the lesson
Orange because it stimulates the brain by increasing its oxygen supply.
Explanation
Details of what the steps actually did... spell out the cause and effect.
Green because we can tie everything together now.
Next Step:
Go on to What Is Ruby