Skip to content

Latest commit

 

History

History
74 lines (47 loc) · 1.85 KB

README.md

File metadata and controls

74 lines (47 loc) · 1.85 KB

ritlug.github.io

CircleCI Code Climate Issue Count

RITlug's current website.

Table of Contents

Updating meeting times / places

Edit _config.yml and update the settings "ritlug-time", "ritlug-place", and "ritlug-day". These are used (and should be used) everywhere on the website the meeting time and place are referenced so that they can be updated in one place.

Patches

Header Height

The default header in Material Design Lite is too large on desktop so we've shrunk it. If you want to change the header height, do the following:

  1. Open css/styles.css
  2. Search for .mdl-demo .mdl-layout__header-row {.
  3. Find and change the height. Default is 64px. We're currently using 25px.

Developing and testing

Setup

First, install Ruby:

sudo (apt-get install|pacman -S|...) ruby

Then, install bundler using gem.

sudo gem install bundler

Lastly, install dependencies with bundler.

bundle install

Start the development server

This command serves the site at http://localhost:4000.

bundle exec jekyll serve

Run tests

This command runs RSpec to test the site.

bundle exec rspec

See the runbook for more details.