DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Vendor_gem_source_index.rb Bug Fix
// This fixes improper handling gems with -win32 postfix in names
def version_for_dir(d) matches = /-(\d+\.\d+\.\d+)/.match(d) #matches = /-([^-]+)$/.match(d) #Zhoran Gem::Version.new(matches[1]) if matches end





