This repository contains material and website for a short introduction to Ruby
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