diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-09-22 22:14:44 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-09-22 22:14:44 -0600 |
commit | 624253f1d12e34b8781ce6e11595b43cdccaa66a (patch) | |
tree | 087376ce39bcacf1a338b713f7d55c73ab738dcb /guides/source | |
parent | 4a7c82d20671b3eccf5e302e3c8351a1bda1ef0f (diff) | |
parent | 1b9e2bc5aa10813bc91c621aef5d1f5c62495123 (diff) | |
download | rails-624253f1d12e34b8781ce6e11595b43cdccaa66a.tar.gz rails-624253f1d12e34b8781ce6e11595b43cdccaa66a.tar.bz2 rails-624253f1d12e34b8781ce6e11595b43cdccaa66a.zip |
Merge pull request #21728 from cllns/fix-engine-path
Remove leading slash from path
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/engines.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index 3b1588b75a..a3cff2a807 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -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: "path/to/blorgh" ``` Then run `bundle` to install the gem. |