summaryrefslogtreecommitdiff
path: root/lib/bundler/plugin/installer/rubygems.rb
blob: cb5db9c30eb2fe6b37c231c5e7676bec7cc3d6fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Bundler
  module Plugin
    class Installer
      class Rubygems < Bundler::Source::Rubygems
        private

        def rubygems_dir
          Plugin.root
        end

        def cache_path
          Plugin.cache
        end
      end
    end
  end
end