Sha256: 9a534c2fe573be5b8aa3833b5d627c57d787dfb1b20fa1b527ab7b89f7d99825

Contents?: true

Size: 1.13 KB

Versions: 139

Compression:

Stored size: 1.13 KB

Contents

dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require File.join(dir, 'httparty')
require 'pp'

class ParseAtom
  include HTTParty

  # Support Atom along with the default parsers: xml, json, etc.
  class Parser::Atom < HTTParty::Parser
    SupportedFormats.merge!({"application/atom+xml" => :atom})

    protected

    # perform atom parsing on body
    def atom
      body.to_atom
    end
  end

  parser Parser::Atom
end

class OnlyParseAtom
  include HTTParty

  # Only support Atom
  class Parser::OnlyAtom < HTTParty::Parser
    SupportedFormats = { "application/atom+xml" => :atom }

    protected

    # perform atom parsing on body
    def atom
      body.to_atom
    end
  end

  parser Parser::OnlyAtom
end

class SkipParsing
  include HTTParty

  # Parse the response body however you like
  class Parser::Simple < HTTParty::Parser
    def parse
      body
    end
  end

  parser Parser::Simple
end

class AdHocParsing
  include HTTParty
  parser(
    proc do |body, format|
      case format
      when :json
        body.to_json
      when :xml
        body.to_xml
      else
        body
      end
    end
  )
end

Version data entries

139 entries across 114 versions & 6 rubygems

Version Path
paynow_sdk-0.1.9 vendor/cache/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb
paynow_sdk-0.1.9 vendor/cache/ruby/2.7.0/gems/paynow_sdk-0.1.8/vendor/cache/ruby/2.7.0/gems/paynow_sdk-0.1.8/vendor/cache/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb
cli-nasa-0.1.1 vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb
cli-nasa-0.1.0 vendor/bundle/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb
paynow_sdk-0.1.8 vendor/cache/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb
paynow_sdk-0.1.7 vendor/cache/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb
paynow_sdk-0.1.7 vendor/cache/ruby/2.7.0/gems/paynow_sdk-0.1.6/vendor/cache/ruby/2.7.0/gems/httparty-0.18.1/examples/custom_parsers.rb
httparty-0.18.1 examples/custom_parsers.rb
httparty-0.18.0 examples/custom_parsers.rb
httparty-0.17.3 examples/custom_parsers.rb
httparty-responsibly-0.17.1 examples/custom_parsers.rb
httparty-0.17.1 examples/custom_parsers.rb
httparty-responsibly-0.17.0.r1 examples/custom_parsers.rb
httparty-0.17.0 examples/custom_parsers.rb
httparty-0.16.4 examples/custom_parsers.rb
httparty-0.16.3 examples/custom_parsers.rb
httparty-0.16.2 examples/custom_parsers.rb
httparty-0.16.1 examples/custom_parsers.rb
httparty-0.16.0 examples/custom_parsers.rb