aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: c8bef9453f0e0068b193880b2ea998bbc4d0ec94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Beginning Ruby Exercises
========================

A small set of Ruby exercises aimed at beginning programmers learning Ruby.
Written for one of my students at [The Firehose
Project](http://www.thefirehoseproject.com/).

Write solutions to exercises in [exercises.rb](exercises.rb). My solutions are
available in [exercises_solutions.rb](exercises_solutions.rb).


## Checking your solutions
Find out if your solutions are correct by running the tests. These can be run
for individual exercises using using `run_test.sh`:

	$ ./run_test.sh 3

The above command will run the tests for exercise 3.

After completing the exercises, all the tests can be run using the spec file
directly:

	$ ruby exercises_spec.rb


## License
Licensed under the MIT License. See the included LICENSE file.