Sha256: 5ee07ba28d729c5b48cc928bb29c31d90c92626df01d7774c696956dceac621e

Contents?: true

Size: 523 Bytes

Versions: 111

Compression:

Stored size: 523 Bytes

Contents

module Fog
  module Parsers
    module Slicehost

      class GetFlavors < Fog::Parsers::Base

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

        def end_element(name)
          case name
          when 'flavor'
            @response['flavors'] << @flavor
            @flavor = {}
          when 'id', 'price', 'ram'
            @flavor[name] = @value.to_i
          when 'name'
            @flavor[name] = @value
          end
        end

      end

    end
  end
end

Version data entries

111 entries across 111 versions & 2 rubygems

Version Path
fog-0.0.42 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.41 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.40 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.39 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.38 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.37 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.36 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.35 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.34 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.33 lib/fog/slicehost/parsers/get_flavors.rb
fog-0.0.32 lib/fog/slicehost/parsers/get_flavors.rb