Converted the contribution guidelines; updates to readme

This commit is contained in:
Joe Ferris 2011-02-07 17:52:28 -05:00
parent 3acd41d873
commit 9fb8a3b40f
3 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,5 @@
lib/**/*.rb
-
GETTING_STARTED.md
CONTRIBUTION_GUIDELINES.md
LICENSE

View File

@ -1,9 +1,9 @@
We're using GitHub[http://github.com/thoughtbot/factory_girl/tree/master], and we've been getting any combination of github pull requests, patches, emails, etc. We need to normalize this workflow to make sure we don't miss any fixes.
We're using [GitHub](http://github.com/thoughtbot/factory_girl/tree/master), and we've been getting any combination of github pull requests, patches, emails, etc. We need to normalize this workflow to make sure we don't miss any fixes.
* Make sure you're accessing the source from the {official repository}[http://github.com/thoughtbot/factory_girl/tree/master].
* Make sure you're accessing the source from the [official repository](http://github.com/thoughtbot/factory_girl/tree/master).
* Please make a branch for each separate contribution. We can cherry pick your commits, but pulling from a branch is easier.
* If you're submitting patches, please cut each fix or feature into a separate patch.
* There should be an issue[http://github.com/thoughtbot/factory_girl/issues] for any submission. If you've found a bug and want to fix it, open a new ticket at the same time.
* There should be an [issue](http://github.com/thoughtbot/factory_girl/issues) for any submission. If you've found a bug and want to fix it, open a new ticket at the same time.
* Please <b>don't send pull requests</b> Just update the issue with the url for your fix when it's ready. The github pull requests pretty much get dropped on the floor until someone with commit rights notices them in the mailbox.
* Contributions without tests won't be accepted.
* Please don't submit patches or branches that update the Gem version.

View File

@ -4,7 +4,7 @@ factory_girl
factory_girl is a fixtures replacement with a straightforward definition syntax, support for multiple build strategies (saved instances, unsaved instances, attribute hashes, and stubbed objects), and support for multiple factories for the same class (user, admin_user, and so on), including factory inheritance.
If you want to use factory_girl with Rails 3, see
{http://github.com/thoughtbot/factory_girl_rails}
[factory_girl_rails](http://github.com/thoughtbot/factory_girl_rails).
Documentation
-------------
@ -16,9 +16,9 @@ See {file:GETTING_STARTED.md} for information on defining and using factories.
Download
--------
Github: {http://github.com/thoughtbot/factory_girl/tree/master}
[Github](http://github.com/thoughtbot/factory_girl/tree/master) or
Gem:
Rubygems:
gem install factory_girl
More Information