production_toolkit 0.1.6 → 0.2.0.pre.alpha.1
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 +4 -4
- data/CHANGELOG.md +10 -4
- data/lib/production_toolkit/initializers/logging.rb +1 -1
- data/lib/production_toolkit/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 263aa6cae3036ca708f5963381c05b2663fb77d8
|
|
4
|
+
data.tar.gz: 34d6315d4f1ecd3b585888a6aa403bd4d5d68b92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a727d8ad5440a97dbffa5bb4dc605045358981aafedc14565c5bf285d9798b9b92e6a9bc419e6aa5e2d1c5c5581bf8b244be496eba9a25b0182d0457e227b51f
|
|
7
|
+
data.tar.gz: c6227ab3cfb160e006ac4f064db4948bd13b6f2809d095cf7daad504031aacc9a1c95d3b3cdac4e89450a6fa0fca63dea1905d7f35b8ac8fa500f008af51305e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
|
-
## Production Toolkit
|
|
1
|
+
## Production Toolkit
|
|
2
|
+
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
* [DO-117] Disable the tag option of the Logentries integration
|
|
6
|
+
|
|
7
|
+
## 0.1.6
|
|
2
8
|
|
|
3
9
|
* Fix lograge railtie
|
|
4
10
|
|
|
5
|
-
##
|
|
11
|
+
## 0.1.5
|
|
6
12
|
|
|
7
13
|
* Fix require in 0.1.4
|
|
8
14
|
* Fix log level
|
|
9
15
|
|
|
10
|
-
##
|
|
16
|
+
## 0.1.4
|
|
11
17
|
|
|
12
18
|
* Fix typo in 0.1.3
|
|
13
19
|
|
|
14
|
-
##
|
|
20
|
+
## 0.1.3
|
|
15
21
|
|
|
16
22
|
* Ignore ActionController::RoutingError in rollbar
|
|
17
23
|
* Read the log_level from Rails or default to info
|
|
@@ -4,6 +4,6 @@ if defined?(Rails)
|
|
|
4
4
|
log_entries_key = Rails.application.secrets.log_entries_key
|
|
5
5
|
log_level_symbol = Rails.application.config.log_level || :info
|
|
6
6
|
log_level = Logger.const_get(log_level_symbol.to_s.upcase)
|
|
7
|
-
Rails.logger = Le.new(log_entries_key, ssl: true,
|
|
7
|
+
Rails.logger = Le.new(log_entries_key, ssl: true, log_level: log_level)
|
|
8
8
|
end
|
|
9
9
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: production_toolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 0.2.0.pre.alpha.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Noack
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06
|
|
11
|
+
date: 2017-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rollbar
|
|
@@ -256,12 +256,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
256
256
|
version: '0'
|
|
257
257
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
258
258
|
requirements:
|
|
259
|
-
- - "
|
|
259
|
+
- - ">"
|
|
260
260
|
- !ruby/object:Gem::Version
|
|
261
|
-
version:
|
|
261
|
+
version: 1.3.1
|
|
262
262
|
requirements: []
|
|
263
263
|
rubyforge_project:
|
|
264
|
-
rubygems_version: 2.
|
|
264
|
+
rubygems_version: 2.6.14
|
|
265
265
|
signing_key:
|
|
266
266
|
specification_version: 4
|
|
267
267
|
summary: Integrate production gems for high quality projects.
|