bugsnag 1.2.18 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ system
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.3.0
5
+ ------
6
+ - By default we notify in all release stages now
7
+ - Return the notification in notify_or_ignore
8
+
4
9
  1.2.18
5
10
  ------
6
11
  - Add support for bugsnag meta data in exceptions.
data/README.md CHANGED
@@ -189,10 +189,9 @@ apps it is automatically set to `RACK_ENV`. Otherwise the default is
189
189
 
190
190
  ###notify_release_stages
191
191
 
192
- By default, we will only notify Bugsnag of exceptions that happen when
193
- your `release_stage` is set to be "production". If you would like to
194
- change which release stages notify Bugsnag of exceptions you can
195
- set `notify_release_stages`:
192
+ By default, we will notify Bugsnag of exceptions that happen in any
193
+ `release_stage`. If you would like to change which release stages
194
+ notify Bugsnag of exceptions you can set `notify_release_stages`:
196
195
 
197
196
  ```ruby
198
197
  config.notify_release_stages = ["production", "development"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.18
1
+ 1.3.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{bugsnag}
8
- s.version = "1.2.18"
8
+ s.version = "1.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["James Smith"]
12
- s.date = %q{2013-02-27}
12
+ s.date = %q{2013-03-21}
13
13
  s.description = %q{Ruby notifier for bugsnag.com}
14
14
  s.email = %q{james@bugsnag.com}
15
15
  s.extra_rdoc_files = [
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.files = [
20
20
  ".document",
21
21
  ".rspec",
22
+ ".ruby-version",
22
23
  ".travis.yml",
23
24
  "CHANGELOG.md",
24
25
  "Gemfile",
@@ -44,7 +44,13 @@ module Bugsnag
44
44
  # Notify of an exception unless it should be ignored
45
45
  def notify_or_ignore(exception, overrides=nil, request_data=nil)
46
46
  notification = Notification.new(exception, configuration, overrides, request_data)
47
- notification.deliver unless notification.ignore?
47
+
48
+ unless notification.ignore?
49
+ notification.deliver
50
+ notification
51
+ else
52
+ false
53
+ end
48
54
  end
49
55
 
50
56
  # Auto notify of an exception, called from rails and rack exception
@@ -38,7 +38,7 @@ module Bugsnag
38
38
  def initialize
39
39
  # Set up the defaults
40
40
  self.release_stage = nil
41
- self.notify_release_stages = ["production"]
41
+ self.notify_release_stages = nil
42
42
  self.auto_notify = true
43
43
  self.use_ssl = false
44
44
  self.params_filters = Set.new(DEFAULT_PARAMS_FILTERS)
@@ -55,7 +55,7 @@ module Bugsnag
55
55
  end
56
56
 
57
57
  def should_notify?
58
- @release_stage.nil? || @notify_release_stages.include?(@release_stage)
58
+ @release_stage.nil? || @notify_release_stages.nil? || @notify_release_stages.include?(@release_stage)
59
59
  end
60
60
 
61
61
  def request_data
@@ -256,7 +256,9 @@ describe Bugsnag::Notification do
256
256
  it "should respect the notify_release_stages setting by not sending in development" do
257
257
  Bugsnag::Notification.should_not_receive(:deliver_exception_payload)
258
258
 
259
+ Bugsnag.configuration.notify_release_stages = ["production"]
259
260
  Bugsnag.configuration.release_stage = "development"
261
+
260
262
  Bugsnag.notify(BugsnagTestException.new("It crashed"))
261
263
  end
262
264
 
@@ -266,7 +268,7 @@ describe Bugsnag::Notification do
266
268
  end
267
269
 
268
270
  Bugsnag.configuration.release_stage = "development"
269
- Bugsnag.configuration.notify_release_stages << "development"
271
+ Bugsnag.configuration.notify_release_stages = ["development"]
270
272
  Bugsnag.notify(BugsnagTestException.new("It crashed"))
271
273
  end
272
274
 
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 1
7
- - 2
8
- - 18
9
- version: 1.2.18
7
+ - 3
8
+ - 0
9
+ version: 1.3.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - James Smith
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2013-02-27 00:00:00 -08:00
17
+ date: 2013-03-21 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -102,6 +102,7 @@ extra_rdoc_files:
102
102
  files:
103
103
  - .document
104
104
  - .rspec
105
+ - .ruby-version
105
106
  - .travis.yml
106
107
  - CHANGELOG.md
107
108
  - Gemfile