Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.67 KB

CONTRIBUTING.md

File metadata and controls

35 lines (27 loc) · 1.67 KB

We love pull requests. Here’s a quick guide:

  1. Fork the repository.
  2. Make your changes in a topic branch.
  3. Make changes to both the Rails app/assets/stylesheets/ and Bower dist/ files
  4. Squash your commits into a single one (more on that here).
  5. Rebase against origin/master, push to your fork and submit a pull request.
  6. If you are writing a new feature please add documentation for it by making another pull request to the gh-pages branch.

At this point you’re waiting on us. We like to at least comment on, if not accept, pull requests within three business days (and, typically, one business day). We may suggest some changes or improvements or alternatives.

Some things that will increase the chance that your pull request is accepted:

  • Fix a bug, refactor code or expand an existing feature.
  • Use the right syntax and naming conventions.
  • Update parts of the documentation that are affected by your contribution.

Git Commit Messages

  • Capitalize your commit messages.
  • Start your message with a verb.
  • Use present tense.
  • Refer to the issue/PR number in your squashed commit message.

SCSS Style Guide

  • Two spaces, no tabs.
  • Dashes instead of underscores or camel case: linear-gradient not linear_gradient or linearGradient
  • Names should be descriptive and written in full-words: $all-text-inputs-hover not $hover or $alltxthvr
  • Space between property and value: width: 20px not width:20px
  • Declarations within a block should be ordered alphabetically.
  • Blank lines between rules.
  • No trailing whitespace. Blank lines should not have any space.