Skip to content

markbates/faraday_bang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Faraday!

Build Status Code Climate

Faraday is a great HTTP library, but it would be even better if had ! versions of all it's methods to raise errors when the request does not receive a successful response. Enter Farady! (pronounced Faraday Bang).

Installation

Add this line to your application's Gemfile:

gem 'faraday_bang'

And then execute:

$ bundle

Or install it yourself as:

$ gem install faraday_bang

Usage

Using Faraday! is just as easy as using Faraday, except all you have to do is add a ! to the Faraday methods.

response = Faraday.get!('http://sushi.com/nigiri/sake.json')

If a response is not successful, then a Faraday::Bang::ResponseError error will be raised.

Each of the HTTP error status codes have been given their own sub-class to make catching them even easier. Here are a few examples:

Faraday::Bang::Response401Error
Faraday::Bang::Response404Error
Faraday::Bang::Response500Error
Faraday::Bang::Response503Error

But Wait! There's More!

As a special added bonus an as_json method has been added to Faraday::Response to make it easier to JSON bodies back as a Ruby Hash.

response = Faraday.get!('http://example.com/example.json')
json = response.as_json
puts json # => {"name"=>"Mark"}

Contributing

  1. Fork it ( http://github.com//faraday_bang/fork )
  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

Adds error raising ! methods to Faraday

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages