bugsnag 1.3.4 → 1.3.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.3.5
5
+ -----
6
+ - Fixed bug in rake integration with ruby 1.9 hash syntax
7
+
4
8
  1.3.4
5
9
  -----
6
10
  - Fix nil bug in windows backtraces
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.4
1
+ 1.3.5
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "bugsnag"
8
- s.version = "1.3.4"
8
+ s.version = "1.3.5"
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 = "2013-04-23"
12
+ s.date = "2013-04-30"
13
13
  s.description = "Ruby notifier for bugsnag.com"
14
14
  s.email = "james@bugsnag.com"
15
15
  s.extra_rdoc_files = [
@@ -17,9 +17,9 @@ module Bugsnag::Rake
17
17
  begin
18
18
  Bugsnag.before_notify_callbacks << lambda {|notif|
19
19
  notif.add_tab(:rake_task, {
20
- name: task.name,
21
- description: task.full_comment,
22
- arguments: task.arg_description
20
+ :name => task.name,
21
+ :description => task.full_comment,
22
+ :arguments => task.arg_description
23
23
  })
24
24
  notif.context ||= task.name
25
25
  }
@@ -1,5 +1,6 @@
1
1
  require 'spec_helper'
2
2
  require 'securerandom'
3
+ require 'ostruct'
3
4
 
4
5
  module ActiveRecord; class RecordNotFound < RuntimeError; end; end
5
6
  class NestedException < StandardError; attr_accessor :original_exception; end
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: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 4
10
- version: 1.3.4
9
+ - 5
10
+ version: 1.3.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Smith
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-04-23 00:00:00 Z
18
+ date: 2013-04-30 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  requirement: &id001 !ruby/object:Gem::Requirement