honeybadger-jets 0.1.0 → 0.2.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bcd6dcd83ba49877310de8308f683665f86ecad370fde81b81fdfcee6c6dc2d
4
- data.tar.gz: 3f256fe65e5ebe207f579d7ee730e625434db58da5ae2aeece15f514e5b23ac6
3
+ metadata.gz: 0a58cee19cdc26617343b8a87469596795a474890425aa19c6032e9b6f2903f5
4
+ data.tar.gz: 48434b44fab8a9808bda7f4c7e5c282f26c5fc04537413c9e69e4f94278c5152
5
5
  SHA512:
6
- metadata.gz: '018b96597d1dee2d5c24cbb7329630728f132ef12fd06478f4ce2c7de3af3c4fe50921477a8123856d3223f32f7ba0b82b689ed166732bfce26bffc370c39bd2'
7
- data.tar.gz: 257693bad1e9ac0f69159a8289ebaaf5f4001b66e393fffa17d86abc3919845f25d6f572122813a2b5214e2d0865d78f34693c572506cc9cb5d807a184856277
6
+ metadata.gz: f4dc262d63ec21218a7e4002790eae2555a7a295d5b227f61e8d47dfce6c0a16d5e0ad4b728a170aca086078b6ac7ea11794c07c998d7c56993ff58fb1527975
7
+ data.tar.gz: c3a6e21744877f4e5553e6ae69c8e1728a0726cfefa22d3eaf356344965466413759c8599279d5193c5aa15caf0de446d512a0a96268847c19a48e747ef34eed
@@ -0,0 +1,10 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
+
6
+ ## [0.2.0]
7
+ - Use on_exception hook
8
+
9
+ ## [0.1.0]
10
+ - Initial release
@@ -0,0 +1,37 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ honeybadger-jets (0.2.0)
5
+ honeybadger
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ diff-lcs (1.3)
11
+ honeybadger (4.1.0)
12
+ rake (10.5.0)
13
+ rspec (3.8.0)
14
+ rspec-core (~> 3.8.0)
15
+ rspec-expectations (~> 3.8.0)
16
+ rspec-mocks (~> 3.8.0)
17
+ rspec-core (3.8.0)
18
+ rspec-support (~> 3.8.0)
19
+ rspec-expectations (3.8.2)
20
+ diff-lcs (>= 1.2.0, < 2.0)
21
+ rspec-support (~> 3.8.0)
22
+ rspec-mocks (3.8.0)
23
+ diff-lcs (>= 1.2.0, < 2.0)
24
+ rspec-support (~> 3.8.0)
25
+ rspec-support (3.8.0)
26
+
27
+ PLATFORMS
28
+ ruby
29
+
30
+ DEPENDENCIES
31
+ bundler (~> 1.16)
32
+ honeybadger-jets!
33
+ rake (~> 10.0)
34
+ rspec (~> 3.0)
35
+
36
+ BUNDLED WITH
37
+ 1.17.2
data/README.md CHANGED
@@ -41,3 +41,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/tongue
41
41
  ## License
42
42
 
43
43
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
44
+
45
+ ## TODO
46
+
47
+ * Use `config/honeybadger.yml` to load settings also. Class is here [honeybadger/config.rb](https://github.com/honeybadger-io/honeybadger-ruby/blob/master/lib/honeybadger/config.rb)
@@ -8,7 +8,7 @@ module HoneybadgerJets
8
8
  end
9
9
  end
10
10
 
11
- exception_reporter 'honeybadger.capture' do |exception|
11
+ on_exception 'honeybadger.capture' do |exception|
12
12
  Honeybadger.notify(exception)
13
13
  end
14
14
  end
@@ -1,3 +1,3 @@
1
1
  module HoneybadgerJets
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honeybadger-jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-15 00:00:00.000000000 Z
11
+ date: 2018-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: honeybadger
@@ -76,7 +76,9 @@ files:
76
76
  - ".gitignore"
77
77
  - ".rspec"
78
78
  - ".travis.yml"
79
+ - CHANGELOG.md
79
80
  - Gemfile
81
+ - Gemfile.lock
80
82
  - LICENSE.txt
81
83
  - README.md
82
84
  - Rakefile