diff options
author | Eileen M. Uchitelle <eileencodes@gmail.com> | 2015-09-23 18:37:28 -0400 |
---|---|---|
committer | Eileen M. Uchitelle <eileencodes@gmail.com> | 2015-09-23 18:37:28 -0400 |
commit | 28cb10b15e8950ff21a26c8849e55d5ca3c25d6b (patch) | |
tree | 23c0c6a791e24442991c86830efb6de2e6bd6ff8 | |
parent | e19f1c3f7139d3f3f22644341d2c8241b04e6b35 (diff) | |
parent | 11f00fd3e3158167e3ca7d706578707390d45109 (diff) | |
download | rails-28cb10b15e8950ff21a26c8849e55d5ca3c25d6b.tar.gz rails-28cb10b15e8950ff21a26c8849e55d5ca3c25d6b.tar.bz2 rails-28cb10b15e8950ff21a26c8849e55d5ca3c25d6b.zip |
Merge pull request #21737 from cllns/make-engine-paths-consistent
Change the paths for both Gemfile lines to be 'engines/blorgh'
-rw-r--r-- | guides/source/engines.md | 4 |
1 files 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. |