Sha256: 4b7a523f509b6e0a182ca37b16eaf70f4c9d5cf56b8b39cf152a072398fb8273

Contents?: true

Size: 623 Bytes

Versions: 111

Compression:

Stored size: 623 Bytes

Contents

module Fog
  module Parsers
    module DNS
      module Bluebox

        class GetZones < Fog::Parsers::Base

          def reset
            @zone = {}
            @response = { 'zones' => [] }
          end

          def end_element(name)
            case name
            when 'serial', 'ttl', 'retry', 'expires', 'record-count', 'refresh', 'minimum'
              @zone[name] = value.to_i
            when 'name', 'id'
              @zone[name] = value
            when 'record'
              @response['zones'] << @zone
              @zone = {}
            end
          end

        end

      end
    end
  end
end

Version data entries

111 entries across 111 versions & 19 rubygems

Version Path
tag-fog-1.0.1 lib/fog/bluebox/parsers/dns/get_zones.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/bluebox/parsers/dns/get_zones.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/bluebox/parsers/dns/get_zones.rb
fog-1.0.0 lib/fog/bluebox/parsers/dns/get_zones.rb
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/dns/parsers/bluebox/get_zones.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/dns/parsers/bluebox/get_zones.rb
fog-0.11.0 lib/fog/dns/parsers/bluebox/get_zones.rb
fog-0.10.0 lib/fog/dns/parsers/bluebox/get_zones.rb
fog4encbs-0.9.0.1 lib/fog/dns/parsers/bluebox/get_zones.rb
fog4encbs-0.9.0 lib/fog/dns/parsers/bluebox/get_zones.rb
fog-0.9.0 lib/fog/dns/parsers/bluebox/get_zones.rb