Method: Sentry.configure_scope
- Defined in:
- lib/sentry-ruby.rb
permalink .configure_scope {|scope| ... } ⇒ void
This method returns an undefined value.
Takes a block and yields the current active scope.
381 382 383 384 |
# File 'lib/sentry-ruby.rb', line 381 def configure_scope(&block) return unless initialized? get_current_hub.configure_scope(&block) end |