Sha256: 0cf0163707d3bc4f4873b72c7f6feb78f6bcf40a78a90fbc0c8d02c85972ef61
Contents?: true
Size: 646 Bytes
Versions: 151
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
151 entries across 123 versions & 5 rubygems