Docs: Contrib. guide, notes on testing

[ci skip]
This commit is contained in:
Jared Beck 2015-10-31 17:20:16 -04:00
parent b6be4af2d8
commit 4409559024
1 changed files with 26 additions and 6 deletions

View File

@ -1,11 +1,31 @@
# Contributing
Thanks for your interest in PaperTrail! We appreciate bug reports, feature
suggestions, and especially pull requests.
Please do not use github issues to ask usage questions. We simply don't have
time to answer them all. Instead, please ask usage questions on Stack Overflow.
Thanks for your interest in PaperTrail!
Ask usage questions on Stack Overflow:
http://stackoverflow.com/tags/papertrail
Thanks, and happy versioning :)
**Please do not use github issues to ask usage questions.**
On github, we appreciate bug reports, feature
suggestions, and especially pull requests.
Thanks, and happy (paper) trails :)
## Development
Run tests with sqlite:
```
bundle exec rake prepare
bundle exec rake
```
Run tests with mysql:
```
cd test/dummy
RAILS_ENV=test bundle exec rake db:setup
cd ../..
DB=mysql bundle exec rake
```