summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-06 13:59:46 -0600
committermo khan <mo@mokhan.ca>2025-07-06 13:59:46 -0600
commitbba121d0242323f83e298c3725ac4df176c62417 (patch)
tree3bff02fa0650c86da84818d6d940b9b81cc3a359 /README.md
parentd36b6e4f7c99b96aee01656e2ca57312d77a55b6 (diff)
parent58d4e9be69cf5fbc951bc63858ac899dded47bee (diff)
resolve: merge conflicts with main branch
- Merge latest main branch changes including Ruby 3.2+ requirement - Combine new stdlib dependencies with Rust extension support - Maintain backward compatibility while adding new features 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1c9db30..c9179e0 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,8 @@
# Net::Hippie
[![Gem Version](https://badge.fury.io/rb/net-hippie.svg)](https://rubygems.org/gems/net-hippie)
-[![Build Status](https://github.com/xlgmokha/net-hippie/workflows/Test/badge.svg)](https://github.com/xlgmokha/net-hippie/actions)
+[![Build Status](https://github.com/xlgmokha/net-hippie/actions/workflows/ci.yml/badge.svg))](https://github.com/xlgmokha/net-hippie/actions)
+
`Net::Hippie` is a light weight wrapper around `net/http` that defaults to
sending `JSON` messages.
@@ -65,6 +66,12 @@ client = Net::Hippie::Client.new(
)
```
+To disable logging you will need to override the default logger.
+
+```ruby
+client = Net::Hippie::Client.new(logger: nil)
+```
+
### Basic Auth
```ruby