Sha256: cf83b1c739c28110cf54fecfaedb0a0eb13e5d09da10f43b779f5a2e6eb45610

Contents?: true

Size: 490 Bytes

Versions: 39

Compression:

Stored size: 490 Bytes

Contents

module Fog
  module Parsers
    module DNS
      module Bluebox
        class GetRecords < Fog::Parsers::Base
          def reset
            @record = {}
            @response = { 'records' => [] }
          end

          def end_element(name)
            case name
            when 'record'
              @response['records'] << @record
              @record = {}
            else
              @record[name] = value
            end
          end
        end
      end
    end
  end
end

Version data entries

39 entries across 37 versions & 5 rubygems

Version Path
fog-1.30.0 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.29.0 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.28.0 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.27.0 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.26.0 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.25.0 lib/fog/bluebox/parsers/dns/get_records.rb
nsidc-fog-1.24.1 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.24.0 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.11 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.10 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.9 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.8 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.7 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.6 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.23.0 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.4 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.3 lib/fog/bluebox/parsers/dns/get_records.rb
ns-fog-1.22.2 lib/fog/bluebox/parsers/dns/get_records.rb
fog-1.22.1 lib/fog/bluebox/parsers/dns/get_records.rb