Project

http_mini

0.0
No commit activity in last 3 years
No release in over 3 years
A truly minimalist Http Ruby client
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

Http mini

Gem Version Build Status Coverage Status Code Climate

A truly minimalist Http client for Ruby. When all you want is a one liner to ping or get the response from a web server.

Install

gem install http_mini --no-ri --no-rdoc

Usage

# Sometimes you just need to know if the site is up and running
do_something if HttpMini.new('http://www.acme.com').poke

# or you want to get the status code
puts HttpMini.new('http://www.google.com').head.code

# You can also set values for timeouts.
puts HttpMini.new('http://www.google.com', {read_timeout: 3, open_timeout: 5}).get.body

#You can change the url and chain calls
http = HttpMini.new('www.apple.com')
apple_html = http.get.body
ruby_html = http.uri('http://www.ruby-lang.org/en/').get.body

# or just the path
http_request_html = http.path('/stdlib-1.9.3/libdoc/net/http/rdoc/Net/HTTPRequest.html').get.body

# Set http headers
puts HttpMini.new('http://www.google.com', headers: {'user-agent' => 'Fancy UserAgent Name'}).head.code

# Basic auth
puts HttpMini.new('http://foo:bar@www.acme.com').head.code

HTTP verbs Support

  • HEAD
  • GET
  • POST
  • PUT
  • DELETE
  • OPTIONS

Request options

  • :headers - http headers, defaults to {}
  • :timeout - number of seconds to wait for the connection to open, number of seconds to wait for one block to be read
  • :ignore_error - ignore errors on poke, defaults to true
  • :unsafe - ignore SSL errors, defaults to false except for poke

Author

Jerome Touffe-Blin, @jtblin, http://www.linkedin.com/in/jtblin

License

HttpMini is copyright 2013 Jerome Touffe-Blin and contributors. It is licensed under the BSD license. See the include LICENSE file for details.