# File lib/semantic_puppet/dependency/module_release.rb, line 41
      def eql?(other)
        other.is_a?(ModuleRelease) &&
          @name.eql?(other.name) &&
          @version.eql?(other.version) &&
          dependencies.eql?(other.dependencies)
      end