summaryrefslogtreecommitdiff
path: root/ruby_2_2/lib/rubygems/resolver/vendor_specification.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/lib/rubygems/resolver/vendor_specification.rb')
-rw-r--r--ruby_2_2/lib/rubygems/resolver/vendor_specification.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/ruby_2_2/lib/rubygems/resolver/vendor_specification.rb b/ruby_2_2/lib/rubygems/resolver/vendor_specification.rb
deleted file mode 100644
index a99b5f3cc1..0000000000
--- a/ruby_2_2/lib/rubygems/resolver/vendor_specification.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-##
-# A VendorSpecification represents a gem that has been unpacked into a project
-# and is being loaded through a gem dependencies file through the +path:+
-# option.
-
-class Gem::Resolver::VendorSpecification < Gem::Resolver::SpecSpecification
-
- def == other # :nodoc:
- self.class === other and
- @set == other.set and
- @spec == other.spec and
- @source == other.source
- end
-
- ##
- # This is a null install as this gem was unpacked into a directory.
- # +options+ are ignored.
-
- def install options = {}
- yield nil
- end
-
-end
-