codeclimate/codeclimate-yaml

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

Summary

Maintainability
A
0 mins
Test Coverage
module CC
  module Yaml
    module Serializer
      NotSupportedError = Class.new(ArgumentError)

      autoload :Generic, "cc/yaml/serializer/generic"
      autoload :Json, "cc/yaml/serializer/json"
    end
  end
end