diff options
author | The Bundler Bot <bot@bundler.io> | 2017-12-11 05:15:55 +0000 |
---|---|---|
committer | SHIBATA Hiroshi <hsbt@ruby-lang.org> | 2017-12-11 20:42:18 +0900 |
commit | a8485767d3dcf531fc9b0f1c84dcd55cd402ee4b (patch) | |
tree | 7d97894af905fd61877e1fe3eb91005455cb326a | |
parent | 2875b6e0c28ed3e9c1f4986c1f6d70a409c1d31e (diff) | |
download | bundler-a8485767d3dcf531fc9b0f1c84dcd55cd402ee4b.tar.gz |
Auto merge of #6209 - hsbt:ignore-doc-templates, r=colby-swandale
Ignore to generate documentation of templates.
### What was the end-user problem that led to this PR?
When users invoke `rdoc -o rdoc lib`, it generates documentation contains template files under the `lib/bundler/template` like `rdoc/lib/bundler/templates/newgem/bin/setup_tt.html`
These files are not useful for users.
### What is your fix for the problem, implemented in this PR?
I added `.document` file to its directory.
-rw-r--r-- | lib/bundler/templates/.document | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/templates/.document b/lib/bundler/templates/.document new file mode 100644 index 0000000000..fb66f13c33 --- /dev/null +++ b/lib/bundler/templates/.document @@ -0,0 +1 @@ +# Ignore all files in this directory |