Website/README.md

25 lines
628 B
Markdown
Raw Permalink Normal View History

2016-07-09 20:40:55 -04:00
# The ODIn Lab Website
2017-08-31 17:18:47 -04:00
Hosted at https://odin.cse.buffalo.edu
2016-07-09 20:40:55 -04:00
## Editing the Website
The lab page is automatically generated using a homebrew tool called GemSmith,
which builds functionality similar to [MetalSmith](http://www.metalsmith.io)
into Ruby's Rake build tool. To compile the repository, just invoke Rake
```
$> rake
```
You'll need at least Ruby 2.3. Generated files live in `build/`
```
2016-07-09 20:41:54 -04:00
$> open build/index.html
2016-07-09 20:40:55 -04:00
```
2016-07-11 11:29:10 -04:00
Details of the repository's organization and how to upload files are in
2017-10-24 18:24:55 -04:00
[CONTRIBUTING.md](CONTRIBUTING.md).
## Installing Rake & Dependencies
```
$> sudo gem install rake redcarpet prawn
```