From 2e9623d943df34d71481017598cbd45069063f31 Mon Sep 17 00:00:00 2001 From: Artur Date: Sat, 24 May 2025 08:52:55 +0000 Subject: [PATCH] Update install step in README Mention requiring the gem. This may be especially helpful for the users of the old `sentry-raven` gem as someone can accidently forget updating `require` statement as a part of a migration. --- sentry-ruby/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sentry-ruby/README.md b/sentry-ruby/README.md index d3212fc5e..d40259b92 100644 --- a/sentry-ruby/README.md +++ b/sentry-ruby/README.md @@ -59,6 +59,8 @@ gem "sentry-opentelemetry" You need to use Sentry.init to initialize and configure your SDK: ```ruby +require "sentry-ruby" + Sentry.init do |config| config.dsn = "MY_DSN" end