class Overcommit::Hook::PostRewrite::IndexTags

Updates ctags index for all source code in the repository.

@see Overcommit::Hook::Shared::IndexTags

Public Instance Methods

run() click to toggle source
Calls superclass method Overcommit::Hook::Shared::IndexTags#run
# File lib/overcommit/hook/post_rewrite/index_tags.rb, line 12
def run
  # Ignore unless this is a rebase (amends are covered by post-commit hook)
  return :pass unless rebase?

  super
end