aitherios/rnfse

View on GitHub
lib/rnfse/xml_builder.rb

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-

module Rnfse
  class XMLBuilder
    def initialize(options)
      options = Hash.stringify_keys(options)
      extend self.class.const_get(String.camelize(options['padrao']))
    end
  end
end