From 11f00fd3e3158167e3ca7d706578707390d45109 Mon Sep 17 00:00:00 2001 From: Sean Collins Date: Wed, 23 Sep 2015 12:29:17 -0600 Subject: Change the paths for both Gemfile lines to be 'engines/blorgh' They're now consistent. Also changes the quotes to be single, so we only have one type of quote per line [skip ci] --- guides/source/engines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/source/engines.md b/guides/source/engines.md index a3cff2a807..6bbd68ff78 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -150,7 +150,7 @@ When you include the engine into an application later on, you will do so with this line in the Rails application's `Gemfile`: ```ruby -gem 'blorgh', path: "vendor/engines/blorgh" +gem 'blorgh', path: 'engines/blorgh' ``` Don't forget to run `bundle install` as usual. By specifying it as a gem within @@ -639,7 +639,7 @@ However, because you are developing the `blorgh` engine on your local machine, you will need to specify the `:path` option in your `Gemfile`: ```ruby -gem 'blorgh', path: "path/to/blorgh" +gem 'blorgh', path: 'engines/blorgh' ``` Then run `bundle` to install the gem. -- cgit v1.2.3