Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 839 Bytes

README.md

File metadata and controls

41 lines (32 loc) · 839 Bytes

ruby101

Short Course

This repository contains material and website for a short introduction to Ruby

Building the website

The static website is generated using middleman

Install this on your own computer, then clone the repository:

git clone https://github.com/nairuby/ruby101

The webpage source code is in the source branch

to make changes to it use

cd ruby101
git checkout source

then make changes. To generate the website use

middleman build

To push source code changes use

git commit -am "Useful commit message"
git push

The website itself is in the gh-pages branch. To push the updated website use

git subtree push --prefix build origin gh-pages