aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/gem_installer.rb
blob: 7d84939853dbf2ab3af0929808fe22058425722c (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