aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/engines.md
diff options
context:
space:
mode:
authorSean Collins <sean@cllns.com>2015-09-23 12:29:17 -0600
committerSean Collins <sean@cllns.com>2015-09-23 12:29:17 -0600
commit11f00fd3e3158167e3ca7d706578707390d45109 (patch)
tree1150ac91dd413ff8c02425f4f5c86895c24104c6 /guides/source/engines.md
parent4cf449df9136117f2f0acf9730bf754f889f4dfa (diff)
downloadrails-11f00fd3e3158167e3ca7d706578707390d45109.tar.gz
rails-11f00fd3e3158167e3ca7d706578707390d45109.tar.bz2
rails-11f00fd3e3158167e3ca7d706578707390d45109.zip
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]
Diffstat (limited to 'guides/source/engines.md')
-rw-r--r--guides/source/engines.md4
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.