Sha256: 261ad3702d3f4a16508d96b3383486e0735a268d9c602c23502ee3b83e61f65f

Contents?: true

Size: 569 Bytes

Versions: 17

Compression:

Stored size: 569 Bytes

Contents

module Fog
  module Parsers
    module Slicehost
      module DNS

        class GetZones < Fog::Parsers::Base

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

          def end_element(name)
            case name
            when 'ttl', 'id'
              @zone[name] = @value.to_i
            when 'active', 'origin'
              @zone[name] = @value
            when 'zone'
              @response['zones'] << @zone
              @zone = {}
            end
          end

        end

      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
fog-0.7.2 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.7.1 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.7.0 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.6.0 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.5.3 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.5.2 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.5.1 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.5.0 lib/fog/dns/parsers/slicehost/get_zones.rb
phpfog-fog-0.4.1.3 lib/fog/dns/parsers/slicehost/get_zones.rb
phpfog-fog-0.4.1.2 lib/fog/dns/parsers/slicehost/get_zones.rb
phpfog-fog-0.4.1.1 lib/fog/dns/parsers/slicehost/get_zones.rb
phpfog-fog-0.4.1 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.4.1 lib/fog/dns/parsers/slicehost/get_zones.rb
fog-0.4.0 lib/fog/slicehost/parsers/dns/get_zones.rb
fog-0.3.34 lib/fog/slicehost/parsers/dns/get_zones.rb
fog-0.3.33 lib/fog/slicehost/parsers/dns/get_zones.rb
fog-0.3.32 lib/fog/slicehost/parsers/dns/get_zones.rb