Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 2.38 KB

CONTRIBUTING.md

File metadata and controls

40 lines (27 loc) · 2.38 KB

Contributing to Squib

Please use GitHub issues for bugs and feature requests.

Need Help?

There are lots of people using Squib already. If you've gone through the samples and still have questions, here are some other places to get help.

If you email me directly I'll probably ask you to post your question publicly so we can document answers for future Googling Squibbers.

Pull Requests

If you are contributing a new feature:

  • Keep your change small and atomic. Do significant refactoring in a separate pull request.
  • Please write a sample demonstrating your new feature. Place it in the samples/ directory
  • While your pull request is open, please keep it up to date with the dev branch so it can be easily integrated
  • We (sort of) follow these Ruby style guidelines

Get Involved in the Community

Let's help each other out! Even if you're relatively new, there's probably some question out there that you can help answer. Here's how to help:

  • Subscribe to our thread on BoardGameGeek (see above for link)
  • Subscribe to alerts from Stackoverflow for the tags "squib" and "ruby"
  • Post snippets of your code using GitHub gists
  • Write a how-to tutorial and post it on our wiki

Testing Pre-Builds

Testers needed!! If you want to test new features as I develop them, or make sure I didn't break your code, you can always point your Gemfile to the repository and follow what I'm doing there. Your Gemfile specification looks like this:

gem 'squib', git: 'git://github.com/andymeneely/squib', branch: 'dev'
  • The dev branch is where I am working on features in-process. I have not done much regression testing at this point, but would love testing feedback nonetheless.
  • The master branch is where I consider features and bug that are done and tested, but not released yet.
  • Use bundle exec to execute your code (e.g. bundle exec rake or bundle exec ruby deck.rb). See Bundler for more info.