codeclimate/codeclimate-yaml

View on GitHub
lib/cc/yaml/parser.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CC
  module Yaml
    module Parser
      autoload :Psych, "cc/yaml/parser/psych"

      def self.parse(value)
        Psych.parse(value)
      end
    end
  end
end