canary_notifier 0.0.28 → 0.0.29

Sign up to get free protection for your applications and to get access to all the features.
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.11'
9
+ gem 'canary_notifier' , '~> 0.0.28'
10
10
  ```
11
11
 
12
12
  Do a `bundle install`.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'canary_notifier'
3
- s.version = '0.0.28'
3
+ s.version = '0.0.29'
4
4
  s.authors = ["Henry Scudder"]
5
5
  s.date = %q{2011-10-27}
6
6
  s.summary = "Exception notification to Canary for Rails apps"
@@ -8,22 +8,23 @@ class CanaryNotifier
8
8
  def call(env)
9
9
  @app.call(env)
10
10
  rescue Exception => e
11
- url = 'http://stark:abc123@bugdrop.bugdrop.io/notify'
11
+ url = 'https://bugdrop-endpoint.herokuapp.com'
12
12
 
13
13
  data = {}
14
- data["app"] = @options[:app_name] || "No Name"
14
+ data["app_key"] = "d2b88600-108b-012f-3d0a-109addaabe1a"
15
15
  data["title"] = "#{e.class.name}: #{e.to_s}"
16
16
 
17
17
  data[:sections] = []
18
18
 
19
19
  backtrace = {}
20
20
  backtrace[:title] = 'Backtrace'
21
- backtrace[:body] = e.backtrace.join("\n")
22
-
21
+ backtrace[:type] = 'code'
22
+ backtrace[:content] = e.backtrace.join("\n")
23
23
 
24
24
  environ = {}
25
25
  environ[:title] = 'Environment'
26
- environ[:body] = env.to_a.map {|x| [x.first,x.last.to_s]}
26
+ environ[:type] = 'table'
27
+ environ[:content] = env.to_a.map {|x| [x.first,x.last.to_s]}
27
28
 
28
29
  data[:sections] << environ
29
30
  data[:sections] << backtrace
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.28
4
+ version: 0.0.29
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: &70234132279660 !ruby/object:Gem::Requirement
16
+ requirement: &2214685340 !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: *70234132279660
24
+ version_requirements: *2214685340
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: json_pure
27
- requirement: &70234132278320 !ruby/object:Gem::Requirement
27
+ requirement: &2214682720 !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: *70234132278320
35
+ version_requirements: *2214682720
36
36
  description:
37
37
  email: support@canaryhq.com
38
38
  executables: []