summaryrefslogtreecommitdiff
path: root/lib/rubygems/resolver/git_specification.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems/resolver/git_specification.rb')
-rw-r--r--lib/rubygems/resolver/git_specification.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/rubygems/resolver/git_specification.rb b/lib/rubygems/resolver/git_specification.rb
new file mode 100644
index 0000000000..ac8d4e9aeb
--- /dev/null
+++ b/lib/rubygems/resolver/git_specification.rb
@@ -0,0 +1,16 @@
+##
+# A GitSpecification represents a gem that is sourced from a git repository
+# and is being loaded through a gem dependencies file through the +git:+
+# option.
+
+class Gem::Resolver::GitSpecification < Gem::Resolver::SpecSpecification
+
+ def == other # :nodoc:
+ self.class === other and
+ @set == other.set and
+ @spec == other.spec and
+ @source == other.source
+ end
+
+end
+