summaryrefslogtreecommitdiff
path: root/ruby_2_2/lib/rubygems/source/vendor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/lib/rubygems/source/vendor.rb')
-rw-r--r--ruby_2_2/lib/rubygems/source/vendor.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/ruby_2_2/lib/rubygems/source/vendor.rb b/ruby_2_2/lib/rubygems/source/vendor.rb
deleted file mode 100644
index 2d936231c1..0000000000
--- a/ruby_2_2/lib/rubygems/source/vendor.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-##
-# This represents a vendored source that is similar to an installed gem.
-
-class Gem::Source::Vendor < Gem::Source::Installed
-
- ##
- # Creates a new Vendor source for a gem that was unpacked at +path+.
-
- def initialize path
- @uri = path
- end
-
- def <=> other
- case other
- when Gem::Source::Lock then
- -1
- when Gem::Source::Vendor then
- 0
- when Gem::Source then
- 1
- else
- nil
- end
- end
-
-end
-