Sha256: d290e56ae77a1d939f750c91c54dc40ada2760488c36c1c773686123834dd28b

Contents?: true

Size: 775 Bytes

Versions: 72

Compression:

Stored size: 775 Bytes

Contents

module Fog
  module Parsers
    module Terremark
      module Shared

        class GetOrganizations < Fog::Parsers::Base

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

          def start_element(name, attributes)
            super
            if name == 'Org'
              organization = {}
              until attributes.empty?
                if attributes.first.is_a?(Array)
                  attribute = attributes.shift
                  organization[attribute.first] = attribute.last
                else
                  organization[attributes.shift] = attributes.shift
                end
              end
              @response['OrgList'] << organization
            end
          end

        end
      end
    end
  end
end

Version data entries

72 entries across 72 versions & 16 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-nirvanix-1.8.1 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-parser-fix-1.6.1 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-test-again-1.6.0 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-parser-fix-1.6.0 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-1.9.0 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/terremark/parsers/shared/get_organizations.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/terremark/parsers/shared/get_organizations.rb
fog-sgonyea-1.8.1 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-1.8.0 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-1.7.0 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-1.6.0 lib/fog/terremark/parsers/shared/get_organizations.rb
fog-1.5.0 lib/fog/terremark/parsers/shared/get_organizations.rb
rackspace-fog-1.4.2 lib/rackspace-fog/terremark/parsers/shared/get_organizations.rb
fog-1.4.0 lib/fog/terremark/parsers/shared/get_organizations.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/terremark/parsers/shared/get_organizations.rb
michiels-fog-1.3.1 lib/fog/terremark/parsers/shared/get_organizations.rb