Flowdock
method

fix_syck_default_key_in_requirements

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Requirement
fix_syck_default_key_in_requirements() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/requirement.rb, line 272
  def fix_syck_default_key_in_requirements # :nodoc:
    Gem.load_yaml

    # Fixup the Syck DefaultKey bug
    @requirements.each do |r|
      if r[0].kind_of? Gem::SyckDefaultKey
        r[0] = "="
      end
    end
  end
Register or log in to add new notes.