Flowdock
method

fix_syck_default_key_in_requirements

Importance_0
v1_9_3_125 - Show latest stable - 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 190
  def fix_syck_default_key_in_requirements
    # Fixup the Syck DefaultKey bug
    @requirements.each do |r|
      if r[0].kind_of? YAML::Syck::DefaultKey
        r[0] = "="
      end
    end
  end
Register or log in to add new notes.