sentry-jets 0.3.0 → 0.4.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: 0b7597bd1a4f2d5c79137333a70605c143e0cb726ccf44b8d41f7c5c748177ec
4
- data.tar.gz: 4ddc05031fa7b4c0d0f9b567d576d4767847adf1e53c45dc57b7b427107be3b1
3
+ metadata.gz: 4dd7a840b70f878dd20d4b73263b996b4e2937f5c3ce6f058e7c84866ad72bef
4
+ data.tar.gz: db5864cc97b9afc99c12477a5874edd0790724cab992c2cf9df3cd73c9c478c4
5
5
  SHA512:
6
- metadata.gz: e4c785eb79ce5e230a8b3f2beb1db88328e3bf79f2da2b3d1d1b8e5f5197dac6a3df90712f25b1605606eb55592f1fe1b08137969ea3dc0df11bb641f9509e62
7
- data.tar.gz: f66b29040a84cd47702ed817c16d590d73e477ef9a7d22e05fc4eb7695904f5f0589b83fb2d2a4bc12c3fc1388355605d2e73d6ed0eecf9af8077f4bb1ab9c95
6
+ metadata.gz: a011816d730976fd0c22fa426445a05f5275065aca166faa15131d62b61c63edb21749eb6b4e605e3ea127e58f670ad85e4b94e9a2e67d7f9a41407034cfa028
7
+ data.tar.gz: 23f0021688d91c24b10d625c4b17d0c62e556cce460c65ef55983d0302dee8014758d50cc49e1c83f9ae2d0670c34392d4d4ff3728baf8e94c2db475cadf4789
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.4.0]
7
+ - add env setting
8
+
6
9
  ## [0.3.0]
7
10
  - add env setting
8
11
 
@@ -5,7 +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
+ config.current_environment = ENV['SENTRY_CURRENT_ENV'] || Jets.env.to_s
9
9
  end
10
10
  end
11
11
 
@@ -1,3 +1,3 @@
1
1
  module SentryJets
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentry-jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen