diff options
author | Enrico Teotti <enrico.teotti@gmail.com> | 2014-11-20 12:27:04 -0500 |
---|---|---|
committer | Enrico Teotti <enrico.teotti@gmail.com> | 2014-11-20 12:27:04 -0500 |
commit | f2a60578d1a7ee4945b089e0533f55900c10540d (patch) | |
tree | b03ccf4dc1d29387ba020818fa4fa6f25c495198 /man | |
parent | 465b12ea2cdd21d5ad4a852d3b722bb57711449d (diff) | |
download | bundler-f2a60578d1a7ee4945b089e0533f55900c10540d.tar.gz |
Improve path documentation.
REF: https://github.com/bundler/bundler/issues/3214
Diffstat (limited to 'man')
-rw-r--r-- | man/gemfile.5.ronn | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn index 7353b5ed4a..dce3999b08 100644 --- a/man/gemfile.5.ronn +++ b/man/gemfile.5.ronn @@ -395,6 +395,12 @@ gems specified as paths. gem "rails", :path => "vendor/rails" +If you would like to use multiple local gems directly from the filesystem, you can set a global `path` option to the path containing the gem's files. This will automatically load gemspec files from subdirectories. + + path 'components' + gem 'admin_ui' + gem 'public_ui' + ## BLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS The `:source`, `:git`, `:path`, `:group`, and `:platforms` options may be |