From 38a571db6ed89b85b1682dd9ca575f060b5bb730 Mon Sep 17 00:00:00 2001 From: Joshua Clayton Date: Mon, 4 Jul 2011 09:49:09 -0400 Subject: [PATCH] Update getting started doc to outline updating gemfile --- GETTING_STARTED.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index c80740b..e55587d 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -1,6 +1,19 @@ Getting Started =============== +Update Your Gemfile +------------------- + +If you're using Rails, you'll need to upgrade `factory_girl_rails` to the latest RC: + + gem "factory_girl_rails", "~> 1.1.rc1" + +If you're *not* using Rails, you'll just have to change the required version of `factory_girl`: + + gem "factory_girl", "~> 2.0.0.rc1" + +Once your Gemfile is updated, you'll want to update your bundle. + Defining factories ------------------