diff --git a/app/views/pages/get-started/install-engine-locally.liquid.haml b/app/views/pages/get-started/install-engine-locally.liquid.haml index 7dab057..9c3a872 100644 --- a/app/views/pages/get-started/install-engine-locally.liquid.haml +++ b/app/views/pages/get-started/install-engine-locally.liquid.haml @@ -331,7 +331,7 @@ position: 4 Now that we have Rails installed, we can create a Rails app to host our LocomotiveCMS Engine using the `rails new` command shown below. Please substitute `acme_cms` with a name of your choosing. -
$ rails new acme_cms --skip-active-record --skip-test-unit --skip-javascript --skip-bundle
+
$ rails _3.2.19_ new acme_cms --skip-active-record --skip-test-unit --skip-javascript --skip-bundle
We used several skip options to remove unneeded modules. These options respectively tell rails not to install ActiveRecord, unit test files, and the default JavaScript files. `--skip-bundle` let's Rails know not to immediately run `bundle install` as we will be editing our Gemfile.