aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/gem_installer.rb
blob: 8124e4bcfce19c8e3ff0d4ab03babfddaa56b8c7 (plain)
1
2
3
4
5
6
7
8
9
require "rubygems/installer"

module Bundler
  class GemInstaller < Gem::Installer
    def check_executable_overwrite(filename)
      # Bundler needs to install gems regardless of binstub overwriting
    end
  end
end