airbrake_user_attributes 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  Gemfile.lock
2
+ pkg/
@@ -74,6 +74,7 @@ module Airbrake
74
74
  end
75
75
  end
76
76
  end
77
+
77
78
  xml.to_s
78
79
  end
79
80
 
@@ -6,7 +6,7 @@ module Airbrake
6
6
 
7
7
  def airbrake_request_data_with_user_attributes
8
8
  data = airbrake_request_data_without_user_attributes
9
- data[:user_attributes] = current_user_filtered_attributes if respond_to?(:current_user)
9
+ data[:user_attributes] = current_user_filtered_attributes if respond_to?(:current_user, true)
10
10
  data
11
11
  end
12
12
  alias_method_chain :airbrake_request_data, :user_attributes
@@ -22,7 +22,8 @@ module Airbrake
22
22
  if url_method = [:user_url, :admin_user_url].detect {|m| respond_to?(m) }
23
23
  attributes[:url] = send(url_method, current_user)
24
24
  end
25
- attributes
25
+ # Return all keys with non-blank values
26
+ attributes.select {|k,v| v.present? }
26
27
  end
27
28
 
28
29
  end
@@ -1,3 +1,3 @@
1
1
  module AirbrakeUserAttributes
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbrake_user_attributes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -203,7 +203,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
203
203
  version: '0'
204
204
  segments:
205
205
  - 0
206
- hash: 311172291318117201
206
+ hash: 817822340806227861
207
207
  required_rubygems_version: !ruby/object:Gem::Requirement
208
208
  none: false
209
209
  requirements:
@@ -212,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
212
212
  version: '0'
213
213
  segments:
214
214
  - 0
215
- hash: 311172291318117201
215
+ hash: 817822340806227861
216
216
  requirements: []
217
217
  rubyforge_project:
218
218
  rubygems_version: 1.8.24