bugsnag 1.3.3 → 1.3.4

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/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.3.4
5
+ -----
6
+ - Fix nil bug in windows backtraces
7
+
4
8
  1.3.3
5
9
  -----
6
10
  - Support windows-style paths in backtraces
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.3
1
+ 1.3.4
data/bugsnag.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "bugsnag"
8
- s.version = "1.3.3"
8
+ s.version = "1.3.4"
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"]
@@ -251,7 +251,7 @@ module Bugsnag
251
251
  _, file, line_str, method = trace.match(BACKTRACE_LINE_REGEX).to_a
252
252
 
253
253
  # Skip stacktrace lines inside lib/bugsnag
254
- next(nil) if file =~ %r{lib/bugsnag}
254
+ next(nil) if file.nil? || file =~ %r{lib/bugsnag}
255
255
 
256
256
  # Expand relative paths
257
257
  p = Pathname.new(file)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bugsnag
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 3
10
- version: 1.3.3
9
+ - 4
10
+ version: 1.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Smith