module Gem
Constants
- Net
- Timeout
Public Instance Methods
match_gem?(platform, gem_name)
click to toggle source
# File bundler/rubygems_ext.rb, line 260 def match_gem?(platform, gem_name) match_platforms?(platform, Gem.platforms) end
match_platforms?(platform, platforms)
click to toggle source
# File bundler/rubygems_ext.rb, line 273 def match_platforms?(platform, platforms) platforms.any? do |local_platform| platform.nil? || local_platform == platform || (local_platform != Gem::Platform::RUBY && platform =~ local_platform) end end
match_spec?(spec)
click to toggle source
# File bundler/rubygems_ext.rb, line 256 def match_spec?(spec) match_gem?(spec.platform, spec.name) end