Module: Gem::Specification::YamlBackfiller

Included in:
Gem::Specification
Defined in:
lib/bundler/rubygems_ext.rb

Overview

Backfill missing YAML require when not defined. Fixed since 3.1.0.pre1.

Instance Method Summary collapse

Instance Method Details

#to_yaml(opts = {}) ⇒ Object



122
123
124
125
126
# File 'lib/bundler/rubygems_ext.rb', line 122

def to_yaml(opts = {})
  Gem.load_yaml unless defined?(::YAML)

  super(opts)
end