httparty
httparty copied to clipboard
:tada: Makes http fun again!
Only load them when they are used.
Ruby 2.7.0 HTTParty 0.20.0 I am having trouble correctly generating an array of hashes for form-data. The first key-value in my array is correctly added but subsequent key-values are truncated...
My way of fixing the httparty controversy, do as you wish :)
We are adding a lot new new features, few people can know about. I thought, it'd be great to have a proper documentation right in README, so one wouldn't have...
Rails 7.0.3 HTTParty 0.20.0 This bug can be reproduced by creating a simple rails application with the following model implementation. ``` class DummyModel < ApplicationRecord include HTTParty enum status: {ok:...
Ran into this today: ``` [2] pry(some_code)> response => nil ... [8] pry(some_code)> response == nil => false [9] pry(some_code)> response.nil? => true ``` Had to do this because we...
**Summary** This change is to add extra chain cert support: Currently, httparty does not support having multiple certs in the `pem` option. The only way to pass in multiple certs...
1. Added https://github.com/covermymeds/rubocop-thread_safety to help identify thread safety issues 2. Updated `.rubocop*` to remove errors & warnings so that Rubocop would run 3. Enabled `ThreadSafety` checks for Rubocop, ignoring `spec/**/*`...
I've spent one hour figuring out how to proper send a POST request, ended up on https://stackoverflow.com/questions/7455744/post-json-to-api-using-rails-and-httparty which helped me a lot in adding **.to_json** to the body hash @result...
Hello, I've noticed that starting from version v0.18.0 there is an extra '/' added at the end of the request url. Is this something on purpose? Maybe it works for...