Fixing: a Gem scoping bug.

This commit is contained in:
Arron Mabrey 2011-10-18 17:24:24 -04:00
parent 5079064329
commit e4cc5c1dde

View file

@ -163,10 +163,10 @@ module Middleman
def self.rubygems_latest_specs
# If newer Rubygems
if Gem::Specification.respond_to? :latest_specs
Gem::Specification.latest_specs
if ::Gem::Specification.respond_to? :latest_specs
::Gem::Specification.latest_specs
else
Gem.source_index.latest_specs
::Gem.source_index.latest_specs
end
end