Method: Sentry.with_scope
- Defined in:
- lib/sentry-ruby.rb
permalink .with_scope {|scope| ... } ⇒ void
This method returns an undefined value.
Takes a block and yields a temporary scope. The temporary scope will inherit all the attributes from the current active scope and replace it to be the active scope inside the block.
406 407 408 409 |
# File 'lib/sentry-ruby.rb', line 406 def with_scope(&block) return yield unless initialized? get_current_hub.with_scope(&block) end |