lib/raven/context.rb in sentry-raven-0.4.6 vs lib/raven/context.rb in sentry-raven-0.4.7

- old
+ new

@@ -7,13 +7,15 @@ def self.clear! Thread.current[:sentry_context] = nil end attr_reader :extra, :tags, :user + attr_accessor :rack_env def initialize - @extra = {} - @tags = {} - @user = {} + @extra = {} + @tags = {} + @user = {} + @rack_env = nil end end end