exceptiontrap 1.0.3 → 1.0.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.
- checksums.yaml +7 -0
- data/lib/exceptiontrap/config.rb +1 -1
- data/lib/exceptiontrap/version.rb +1 -1
- metadata +7 -9
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: ff8525dae639cb1e13860ed2726bd7ba7d1a5ce2
|
|
4
|
+
data.tar.gz: 1fe09c4dc4592d48f727671272e0a9e09b401e4c
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: aa13f5655f356fcbebf2a68c19e3e63162f3e236e0b9f6a835ca673f650c53615dc9c21948f1ce8398453194b80e8c8a4f1279aaf72386e10bfe8aaac6071b47
|
|
7
|
+
data.tar.gz: fe92a6d76aafe783dfb2ef023c1d7b6ca533c5138fbaa1209dc51aca7c095c32c75f8f962d16f19adef3b9d6de5bcb776714386eefe585f51f00145debb533d5
|
data/lib/exceptiontrap/config.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Exceptiontrap
|
|
|
13
13
|
begin
|
|
14
14
|
config = YAML::load(File.open(config_file))
|
|
15
15
|
|
|
16
|
-
@api_key = config['api-key']
|
|
16
|
+
@api_key = ENV['EXCEPTIONTRAP_API_KEY'] || config['api-key']
|
|
17
17
|
@ssl = config['ssl']
|
|
18
18
|
@ignored_exceptions = config['ignoreExceptions']
|
|
19
19
|
@enabled_environments = config['enabledEnvironments']
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exceptiontrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 1.0.4
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- tbuehl
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
11
|
+
date: 2013-06-28 00:00:00.000000000 Z
|
|
13
12
|
dependencies: []
|
|
14
13
|
description: Exception notifier. The Gem catches your applications exceptions and
|
|
15
14
|
sends those to the exceptiontrap webservice hosted at http://exceptiontrap.com
|
|
@@ -47,27 +46,26 @@ files:
|
|
|
47
46
|
- uninstall.rb
|
|
48
47
|
homepage: http://exceptiontrap.com
|
|
49
48
|
licenses: []
|
|
49
|
+
metadata: {}
|
|
50
50
|
post_install_message:
|
|
51
51
|
rdoc_options: []
|
|
52
52
|
require_paths:
|
|
53
53
|
- lib
|
|
54
54
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
55
|
-
none: false
|
|
56
55
|
requirements:
|
|
57
|
-
- -
|
|
56
|
+
- - '>='
|
|
58
57
|
- !ruby/object:Gem::Version
|
|
59
58
|
version: '0'
|
|
60
59
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
|
-
none: false
|
|
62
60
|
requirements:
|
|
63
|
-
- -
|
|
61
|
+
- - '>='
|
|
64
62
|
- !ruby/object:Gem::Version
|
|
65
63
|
version: '0'
|
|
66
64
|
requirements: []
|
|
67
65
|
rubyforge_project: exceptiontrap
|
|
68
|
-
rubygems_version:
|
|
66
|
+
rubygems_version: 2.0.3
|
|
69
67
|
signing_key:
|
|
70
|
-
specification_version:
|
|
68
|
+
specification_version: 4
|
|
71
69
|
summary: Exception notifier, used to report your apps exceptions to the exceptiontrap
|
|
72
70
|
webservice
|
|
73
71
|
test_files:
|