Please don't edit files in the dist
subdirectory as they are generated via grunt. You'll find source code in the src
subdirectory!
Regarding code style like indentation and whitespace, follow the conventions you see used in the source already.
Ensure that you have Node.js and npm installed. The best way to do it is through NVM.
Ensure that you have Ruby and RubyGems installed. The best way to do it is through RVM.
- Fork and clone the repo.
- Run
gem install bundler
to install Bundler. - Run
bundle install --path=vendor/bundle
to install compass. - Run
npm install -g grunt-cli
to install grunt command line globally. - Run
npm install
to install all dependencies (including grunt). - Run
grunt
to grunt this project.
Assuming that you don't see any red, you're ready to go. Just be sure to run grunt
after making any changes, to ensure that nothing is broken.
- Create a new branch, please don't work in your
master
branch directly. - Fix stuff.
- Add examples if you are adding a new feature.
- Run
grunt
to see if there are warnings/errors. - Push to your fork and submit a pull request.