summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2016-12-24 02:46:38 +0000
committerThe Bundler Bot <bot@bundler.io>2016-12-24 02:46:38 +0000
commit857168ed707027c8c4eb913c25425dad8a4b0e11 (patch)
treeb44179cd4dba000d55046941216b7d79cc9ed148
parent9728f84509378de7df5d628896be5b95680f65d2 (diff)
parente217f6d1f39efa4802f361adcc4ab6145b6026fe (diff)
downloadbundler-857168ed707027c8c4eb913c25425dad8a4b0e11.tar.gz
Auto merge of #5270 - pixeltrix:fix-hook-name, r=segiddins
Use correct hook name in comment I checked `Bundler::Source::Path::Installer#post_install` - it's definitely `pre_install` and not `post_install` twice though I wasn't sure given the method name 😄
-rw-r--r--lib/bundler/plugin/api/source.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/plugin/api/source.rb b/lib/bundler/plugin/api/source.rb
index 78514563f7..b129576b7d 100644
--- a/lib/bundler/plugin/api/source.rb
+++ b/lib/bundler/plugin/api/source.rb
@@ -93,7 +93,7 @@ module Bundler
# It should be called in `install` after the plugin is done placing the
# gem at correct install location.
#
- # It also runs Gem hooks `post_install`, `post_build` and `post_install`
+ # It also runs Gem hooks `pre_install`, `post_build` and `post_install`
#
# Note: Do not override if you don't know what you are doing.
def post_install(spec, disable_exts = false)