canary_notifier 0.0.29 → 0.0.30
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/Readme.md +2 -2
- data/canary_notifier.gemspec +1 -1
- data/lib/canary_notifier.rb +1 -1
- metadata +5 -5
data/Readme.md
CHANGED
@@ -6,7 +6,7 @@ A simple way to get your ruby errors into Canary.
|
|
6
6
|
Add this to your Gemfile:
|
7
7
|
|
8
8
|
```ruby
|
9
|
-
gem 'canary_notifier' , '~> 0.0.
|
9
|
+
gem 'canary_notifier' , '~> 0.0.30'
|
10
10
|
```
|
11
11
|
|
12
12
|
Do a `bundle install`.
|
@@ -14,7 +14,7 @@ Do a `bundle install`.
|
|
14
14
|
Open up config/environments/development.rb and add this do the end of the configure block:
|
15
15
|
|
16
16
|
```ruby
|
17
|
-
config.middleware.use CanaryNotifier, :
|
17
|
+
config.middleware.use CanaryNotifier, :app_key => '0000-0000-000-0-0-0-'
|
18
18
|
```
|
19
19
|
|
20
20
|
Any errors you have should now show up to Canary.
|
data/canary_notifier.gemspec
CHANGED
data/lib/canary_notifier.rb
CHANGED
@@ -11,7 +11,7 @@ class CanaryNotifier
|
|
11
11
|
url = 'https://bugdrop-endpoint.herokuapp.com'
|
12
12
|
|
13
13
|
data = {}
|
14
|
-
data["app_key"] =
|
14
|
+
data["app_key"] = @options[:app_key]
|
15
15
|
data["title"] = "#{e.class.name}: #{e.to_s}"
|
16
16
|
|
17
17
|
data[:sections] = []
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: canary_notifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.30
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-10-27 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|
16
|
-
requirement: &
|
16
|
+
requirement: &70176372519120 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70176372519120
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: json_pure
|
27
|
-
requirement: &
|
27
|
+
requirement: &70176372516820 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70176372516820
|
36
36
|
description:
|
37
37
|
email: support@canaryhq.com
|
38
38
|
executables: []
|