bugsnag 2.8.11 → 2.8.12
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/bugsnag/configuration.rb +1 -0
- data/lib/bugsnag/tasks/bugsnag.cap +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2f66dcb23eacb6017a6815314dd03cd8d245566
|
|
4
|
+
data.tar.gz: b46962c2a2cad2007e43fcea706e243aabf38af9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e04d26556f1ba98779c04754fa2820d2248f2033d5b54348cd5a42237bbd4754913c814ee3b86d804482478b260905a931aa54da063126489a059b4cdcb32d2f
|
|
7
|
+
data.tar.gz: b637b49697e20df7b3ad6f0b33485a928835f7edd71a9e410a947af18d0e684c6c5c6e7a2c9e481c32b3291089305a981c8e5327255f90a051c13502f86b27a6
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -534,7 +534,7 @@ config.proxy_password = "proxy_secret_password_here"
|
|
|
534
534
|
```
|
|
535
535
|
|
|
536
536
|
###timeout
|
|
537
|
-
By default the timeout for posting errors to Bugsnag is
|
|
537
|
+
By default the timeout for posting errors to Bugsnag is 15 seconds, to change this
|
|
538
538
|
you can set the `timeout`:
|
|
539
539
|
|
|
540
540
|
```ruby
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.8.
|
|
1
|
+
2.8.12
|
|
@@ -32,7 +32,9 @@ namespace :bugsnag do
|
|
|
32
32
|
:revision => fetch(:current_revision, ENV["BUGSNAG_REVISION"]),
|
|
33
33
|
:repository => fetch(:repo_url, ENV["BUGSNAG_REPOSITORY"]),
|
|
34
34
|
:branch => fetch(:branch, ENV["BUGSNAG_BRANCH"]),
|
|
35
|
-
:app_version => fetch(:app_version, ENV["BUGSNAG_APP_VERSION"])
|
|
35
|
+
:app_version => fetch(:app_version, ENV["BUGSNAG_APP_VERSION"]),
|
|
36
|
+
:endpoint => fetch(:bugsnag_endpoint, Bugsnag::Configuration::DEFAULT_ENDPOINT),
|
|
37
|
+
:use_ssl => fetch(:bugsnag_use_ssl, true)
|
|
36
38
|
})
|
|
37
39
|
rescue
|
|
38
40
|
error "Bugsnag deploy notification failed, #{$!.inspect}"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bugsnag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Smith
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-08-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|