This is a REST client I made for fun. ❤️
It is simple, yet flexible enough for my use cases.
Add this line to your application's Gemfile:
gem 'mu-rest_client'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mu-rest_client
Require it:
require 'mu/rest-client'
result = Mu::RestClient.api_request(
domain: 'reqres.in',
path: '/api/users/2',
)
result.success? # => true
result.unwrap(:http_code) # => '200'
result.unwrap(:body)
# => {"data"=>
# {"id"=>2,
# "email"=>"[email protected]",
# "first_name"=>"Janet",
# "last_name"=>"Weaver",
# "avatar"=>"https://s3.amazonaws.com/uifaces/faces/twitter/josephstein/128.jpg"}}
result = Mu::RestClient.api_request(
domain: 'reqres.in',
path: '/api/users/23',
)
result.error? # => true
result.code # => :http_error
result.unwrap(:http_code) # => '404'
result.unwrap(:response) # => #<Net::HTTPNotFound 404 Not Found readbody=true>
result.unwrap(:body) # => {}
result = Mu::RestClient.api_request(domain: 'reqres.in', path: '/api/login', method: :post, body_params: { email: "peter@klaven" })
result.error? # => true
result.http_code # => '400'
result.unwrap(:body) # => {"error"=>"Missing email or username"}
result = Mu::RestClient.api_request(
domain: 'reqres.in',
path: '/api/users/2',
method: :delete,
success_codes: ['204'],
)
result.success? # => true
result.http_code # => '204'
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://source.olisti.co/olistik/mu-rest_client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Mu::RestClient project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.