Sha256: 10f8ca888bbff810975a575a8e38b00e346c93d53ec4b735702e67eaf3d73152

Contents?: true

Size: 815 Bytes

Versions: 113

Compression:

Stored size: 815 Bytes

Contents

require 'fog/aws/parsers/simpledb/basic'

module Fog
  module Parsers
    module AWS
      module SimpleDB

        class GetAttributes < Fog::Parsers::AWS::SimpleDB::Basic

          def reset
            @attribute = nil
            @response = { 'Attributes' => {} }
          end

          def end_element(name)
            case name
            when 'Attribute'
              @attribute = nil
            when 'BoxUsage'
              response[name] = value.to_f
            when 'Name'
              @attribute = value
              response['Attributes'][@attribute] ||= []
            when 'RequestId'
              response[name] = value
            when 'Value'
              response['Attributes'][@attribute] << sdb_decode(value)
            end
          end

        end

      end
    end
  end
end

Version data entries

113 entries across 113 versions & 18 rubygems

Version Path
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-1.3.1 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-1.3.0 lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-1.2.0 lib/fog/aws/parsers/simpledb/get_attributes.rb
ktheory-fog-1.1.2 lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-1.1.2 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog_tractical-1.1.4 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog_tractical-1.1.3 lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-1.1.1 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-1.1.0 lib/fog/aws/parsers/simpledb/get_attributes.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/simpledb/get_attributes.rb
tag-fog-1.0.1 lib/fog/aws/parsers/simpledb/get_attributes.rb