firmafon/ruby-fogbugz

View on GitHub
lib/ruby_fogbugz/adapters/xml/cracker.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'crack/util'
require 'crack/xml'

module Fogbugz
  module Adapter
    module XML
      class Cracker
        def self.parse(xml)
          Crack::XML.parse(xml)['response']
        end
      end
    end
  end
end