sentry-jets 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a58f167b8e5be7140ff8878240ad78ac274c40f0b7eb2ae7931adf3a66c5980c
4
- data.tar.gz: e7a4ec58f98441db5f5077999c52b4713279baf2173bc3f31bfd17c178c7e098
3
+ metadata.gz: 0b7597bd1a4f2d5c79137333a70605c143e0cb726ccf44b8d41f7c5c748177ec
4
+ data.tar.gz: 4ddc05031fa7b4c0d0f9b567d576d4767847adf1e53c45dc57b7b427107be3b1
5
5
  SHA512:
6
- metadata.gz: 697fc5ddb259e345cf9068f48ae78d43654e3a3e4b0d9af565bf477b17c8fba9c5b9e5b5700547e633fe0b7877a9df1133a5343281dcf97ce43070abfb21e39c
7
- data.tar.gz: d65eee21207cc70354aaf2667b536558bc2d956e1afa96f661705e8cbad316f1676c2160880c844c5aba748ed6bae46bf6f31c91158edfb75a66637eecb5df45
6
+ metadata.gz: e4c785eb79ce5e230a8b3f2beb1db88328e3bf79f2da2b3d1d1b8e5f5197dac6a3df90712f25b1605606eb55592f1fe1b08137969ea3dc0df11bb641f9509e62
7
+ data.tar.gz: f66b29040a84cd47702ed817c16d590d73e477ef9a7d22e05fc4eb7695904f5f0589b83fb2d2a4bc12c3fc1388355605d2e73d6ed0eecf9af8077f4bb1ab9c95
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.3.0]
7
+ - add env setting
8
+
6
9
  ## [0.2.0]
7
10
  - Use on_exception hook
8
11
 
data/Gemfile.lock CHANGED
@@ -25,7 +25,7 @@ GEM
25
25
  diff-lcs (>= 1.2.0, < 2.0)
26
26
  rspec-support (~> 3.8.0)
27
27
  rspec-support (3.8.0)
28
- sentry-raven (2.7.4)
28
+ sentry-raven (2.9.0)
29
29
  faraday (>= 0.7.6, < 1.0)
30
30
 
31
31
  PLATFORMS
@@ -38,4 +38,4 @@ DEPENDENCIES
38
38
  sentry-jets!
39
39
 
40
40
  BUNDLED WITH
41
- 1.17.2
41
+ 1.17.3
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  This gem adds Sentry error reporting support to [Jets: Ruby Serverless Framework](http://rubyonjets.com/).
8
8
 
9
- This gem is not officially associated and written by Sentry. This is written by [tongueroo](https://www.linkedin.com/in/tongueroo/). Looking for maintainers or someone who would like to see if they can get this integrated to the official [sentry-raven](https://github.com/getsentry/raven-ruby) gem. instead At which point, this gem should be deprecated.
9
+ This gem is not officially associated and written by Sentry. This is written by [tongueroo](https://www.linkedin.com/in/tongueroo/). Looking for maintainers or someone who would like to see if they can get this integrated to the official [sentry-raven](https://github.com/getsentry/raven-ruby) gem instead. At which point, this gem should be deprecated.
10
10
 
11
11
  ## Installation
12
12
 
@@ -5,6 +5,7 @@ module SentryJets
5
5
  initializer 'sentry.configure' do
6
6
  Raven.configure do |config|
7
7
  config.dsn = ENV['SENTRY_DSN']
8
+ config.current_environment = ENV['SENTRY_CURRENT_ENV']
8
9
  end
9
10
  end
10
11
 
@@ -1,3 +1,3 @@
1
1
  module SentryJets
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentry-jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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-12-15 00:00:00.000000000 Z
11
+ date: 2019-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sentry-raven
@@ -108,8 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
- rubyforge_project:
112
- rubygems_version: 2.7.6
111
+ rubygems_version: 3.0.2
113
112
  signing_key:
114
113
  specification_version: 4
115
114
  summary: Sentry exception report support for Jets