Skip to content

Manbo-/faraday-response-encoder

Repository files navigation

Faraday::Response::Encoder

Build Status

Installation

$ git clone https://github.com/Manbo-/faraday-response-encoder
$ cd faraday-response-encoder
$ rake install

Usage

require "faraday/response/encoder"
connection = Faraday.new do |builder|
  builder.response :encoder, { from: "EUC-JP", to: "UTF-8", replace: "",
                          text_only: true, if: ->(env){ ... } }
  builder.adapter :net_http
end
connection.get(...).body

Options

from

default: charset value of http headers or UTF-8

specify encoding of response body

to

default: UTF-8

specify value to encode

replace

default: ""

replace invalid bytes with this value

text_only

default: true

if true and response Content-Type doesn't include "text", skip encoding

if

example: if: ->(env){ env[:url].to_s =~ %r(\Ahttp://github.com/) }

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages