Sha256: 95fc892413d23b3f5d1c87d605a532a248a0dd38b8e33b106cfe04d50398b17c

Contents?: true

Size: 504 Bytes

Versions: 111

Compression:

Stored size: 504 Bytes

Contents

module Fog
  module Parsers
    module DNS
      module Bluebox

        class CreateRecord < Fog::Parsers::Base

          def reset
            @response = {}
          end

          def end_element(name)
            case name
            when 'serial', 'ttl', 'retry', 'refresh', 'minimum', 'record-count', 'expires'
              @response[name] = value.to_i
            when 'name', 'id'
              @response[name] = value
            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/create_record.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/bluebox/parsers/dns/create_record.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/bluebox/parsers/dns/create_record.rb
fog-1.0.0 lib/fog/bluebox/parsers/dns/create_record.rb
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/dns/parsers/bluebox/create_record.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/dns/parsers/bluebox/create_record.rb
fog-0.11.0 lib/fog/dns/parsers/bluebox/create_record.rb
fog-0.10.0 lib/fog/dns/parsers/bluebox/create_record.rb
fog4encbs-0.9.0.1 lib/fog/dns/parsers/bluebox/create_record.rb
fog4encbs-0.9.0 lib/fog/dns/parsers/bluebox/create_record.rb
fog-0.9.0 lib/fog/dns/parsers/bluebox/create_record.rb