Setting up your computer - Patternslib/project-scaffold GitHub Wiki
Dependencies
This project scaffold puts together your project from html, sass and javascript sources. To do that it needs some tools available on your computer.
Note that you may need administrative privileges to install these!
Ruby 2
You need ruby version 2 or higher.
-
MacOS (homebres):
brew install ruby2.1
-
MacOS (fink):
fink install ruby2
-
MacOS (macports):
port install ruby2
-
Ubuntu:
sudo apt-get install ruby2.1
Bundler
Bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that are needed. We use it to install our html and css building tools.
sudo gem install bundler
Node package manager
The Node package manager is a tool to download and manage javascript dependencies. We use it to build the patterns bundle.
Download and install the latest version from http://nodejs.org.