
require 'rbyaml'

module YAML
  # Make YAML module to act exactly as RbYAML
  def self.method_missing(name,*args)
    RbYAML.send(name,*args)
  end

  def self.const_missing(name)
    RbYAML.const_get(name)
  end
end
