summaryrefslogtreecommitdiff
path: root/lib/bundler/plugin/installer/rubygems.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/plugin/installer/rubygems.rb')
-rw-r--r--lib/bundler/plugin/installer/rubygems.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/bundler/plugin/installer/rubygems.rb b/lib/bundler/plugin/installer/rubygems.rb
deleted file mode 100644
index 7ae74fa93b..0000000000
--- a/lib/bundler/plugin/installer/rubygems.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-module Bundler
- module Plugin
- class Installer
- class Rubygems < Bundler::Source::Rubygems
- def version_message(spec)
- "#{spec.name} #{spec.version}"
- end
-
- private
-
- def requires_sudo?
- false # Will change on implementation of project level plugins
- end
-
- def rubygems_dir
- Plugin.root
- end
-
- def cache_path
- Plugin.cache
- end
- end
- end
- end
-end