summaryrefslogtreecommitdiff
path: root/lib/bundler/psyched_yaml.rb
blob: 3d9893031ffa83cc7864565fba5afb44a19987af (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

begin
  require "psych"
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)