Sha256: 605a5e634b19b462e2911e15a541ba19705f86d594f26494c427c911f5a665fa
Contents?: true
Size: 646 Bytes
Versions: 4
Compression:
Stored size: 646 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.dump) 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
4 entries across 4 versions & 2 rubygems