Method: Gem::SourceList#include?
- Defined in:
- lib/rubygems/source_list.rb
#include?(other) ⇒ Boolean
Returns true if this source list includes other which may be a Gem::Source or a source URI.
132 133 134 135 136 137 138 |
# File 'lib/rubygems/source_list.rb', line 132 def include?(other) if other.kind_of? Gem::Source @sources.include? other else @sources.find {|x| x.uri.to_s == other.to_s } end end |