Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 930 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (24 loc) · 930 Bytes

Contributing

Awesome! Here are some guidelines:

  • Contributions will not be accepted without tests.
  • If you're creating a small fix or patch to an existing feature, just a simple test will do. Please stay in the confines of the current test suite and use RSpec.
  • If your contribution changes any behavior, make sure to update the documentation.
  • Please follow the GitHub Ruby Styleguide when modifying Ruby code.

Running the tests

rspec spec/*_spec.rb

Basic Steps

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Make sure the tests pass (rspec spec/*_spec.rb)
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request