Sha256: 11fee3815fea7775a7fd1e5d61ff06a1fe6fd37bc50c6734421fcc4963e603dc
Contents?: true
Size: 641 Bytes
Versions: 15
Compression:
Stored size: 641 Bytes
Contents
# Psych could be a gem, so try to ask for it begin gem 'psych' rescue LoadError end if defined?(gem) # Psych could just be in the stdlib # but it's too late if Syck is already loaded begin require 'psych' unless defined?(Syck) rescue LoadError # Apparently Psych wasn't available. Oh well. end # At least load the YAML stdlib, whatever that may be require 'yaml' unless defined?(YAML) module Bundler # On encountering invalid YAML, # Psych raises Psych::SyntaxError if defined?(::Psych::SyntaxError) YamlSyntaxError = ::Psych::SyntaxError else # Syck raises ArgumentError YamlSyntaxError = ::ArgumentError end end
Version data entries
15 entries across 15 versions & 1 rubygems