Skip to content

Commit 9b96d92

Browse files
committed
point to Jumbstart lab's ruby in 100 minutes
1 parent d0eb99f commit 9b96d92

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

index.html

+4
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ <h1>Codebar.io</h1>
4949
<li><a href="js/lesson8/tutorial.html">Building your own app</a></li>
5050
</ul>
5151

52+
<strong>Ruby</strong>
53+
<ul>
54+
<li><a href="ruby/lesson1/tutorial.html">Introduction to Ruby</a></li>
55+
</ul>
5256
</section>
5357
<footer>
5458
</footer>

js/lesson1/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,6 @@ With help from your coach try and write a program to do the following
401401
```
402402

403403
---
404-
This ends our **Introduction to JavaScript**. Is there something you don't understand? Try and go through the provided resources with your coach. If you have any feedback, or can think of ways to improve this tutorial [send us an email](mailto:feedback@codebar.io) and let us know.
404+
This ends our **Introduction to JavaScript** tutorial. Is there something you don't understand? Try and go through the provided resources with your coach. If you have any feedback, or can think of ways to improve this tutorial [send us an email](mailto:feedback@codebar.io) and let us know.
405405

406406

ruby/lesson1/tutorial.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: page
3+
title: Introduction to Ruby
4+
---
5+
6+
## Installing Ruby
7+
8+
Before you begin, you must have Ruby installed on your machine. There are a couple of different ways you can get ruby setup.
9+
10+
- [Download from ruby-lang.org](https://www.ruby-lang.org/en/downloads/)
11+
- Setup using [RVM][1] or [rbenv][2]
12+
13+
We recommend using a version manager (you are only able to do that if you are on a UNIX based system like OS X or Linux), so that you can manage diffrent Ruby versions.
14+
15+
Alternatively, if you are having trouble you can create an account on [nitrous.io](https://www.nitrous.io) which gives you a ready environment that you can use in the browser.
16+
17+
## Ruby in 100 minutes
18+
19+
There are some great tutorials out there, so to understand Ruby basics we will be going through Jumbstart Lab's [Ruby in 100 minutes](http://tutorials.jumpstartlab.com/projects/ruby_in_100_minutes.html).
20+
21+
The tutorial is open source, so if you have anything to add to it, you can issue a pull request to [the project on Github](https://github.com/JumpstartLab/curriculum/blob/master/source/projects/ruby_in_100_minutes.markdown).
22+
23+
---
24+
This ends our **Introduction to Ruby** tutorial. Is there something you don't understand? Try and go through the provided resources with your coach. If you have any feedback, or can think of ways to improve this tutorial [send us an email](mailto:feedback@codebar.io) and let us know.
25+
26+
[1]: http://rvm.io/rvm/install "Ruby Version Manager"
27+
[2]: https://github.com/sstephenson/rbenv "rbenv"

0 commit comments

Comments
 (0)