forked from gitlabhq/gitlabhq
-
Notifications
You must be signed in to change notification settings - Fork 1
Contribute
randx edited this page Mar 2, 2012
·
10 revisions
If you want to contribute to Gitlab, follow this process:
- Fork the project
- Create a feature branch
- Code
- Create a pull request
We only accept pull requests if:
- Your code has proper tests and all tests pass
- Your code can be merged w/o problems
- It wont broke existing functionality
- Its a quality code
- We like it :)
To run the specs for Gitlab, you need to run seeds for test db.
cd gitlabhq
rake db:seed_fu RAILS_ENV=test
Then you can run the test suite with rake:
rake spec