File: cracker.rb

package info (click to toggle)
ruby-fogbugz 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: ruby: 199; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 221 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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