production_toolkit 0.1.6 → 0.2.0.pre.alpha.1

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
  SHA1:
3
- metadata.gz: 5daf7bb40b527fbf28809d256c7bfc573065411e
4
- data.tar.gz: 2c1c44ea0b527cb544606fa85133b75494f5ab5d
3
+ metadata.gz: 263aa6cae3036ca708f5963381c05b2663fb77d8
4
+ data.tar.gz: 34d6315d4f1ecd3b585888a6aa403bd4d5d68b92
5
5
  SHA512:
6
- metadata.gz: b4f901ee85986464718432b62a1a48f5a274f0d8dfaa7823354251e064f77ae26595b4f23785d0dc325ea7e29bb757cb03910e9f231cb2cfa226270a0c772401
7
- data.tar.gz: 8e6f7e5bb4b598d045d70dfca6cdc21380a768d0c04bea05fe6f0d20fb0ee56cbe79e707c55a9c8281ff43fd013d5bf0be44c46583de45214aeaa944ab7a721e
6
+ metadata.gz: a727d8ad5440a97dbffa5bb4dc605045358981aafedc14565c5bf285d9798b9b92e6a9bc419e6aa5e2d1c5c5581bf8b244be496eba9a25b0182d0457e227b51f
7
+ data.tar.gz: c6227ab3cfb160e006ac4f064db4948bd13b6f2809d095cf7daad504031aacc9a1c95d3b3cdac4e89450a6fa0fca63dea1905d7f35b8ac8fa500f008af51305e
data/CHANGELOG.md CHANGED
@@ -1,17 +1,23 @@
1
- ## Production Toolkit 0.1.6 ##
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
- ## Production Toolkit 0.1.5 ##
11
+ ## 0.1.5
6
12
 
7
13
  * Fix require in 0.1.4
8
14
  * Fix log level
9
15
 
10
- ## Production Toolkit 0.1.4 ##
16
+ ## 0.1.4
11
17
 
12
18
  * Fix typo in 0.1.3
13
19
 
14
- ## Production Toolkit 0.1.3 ##
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, tag: true, log_level: log_level)
7
+ Rails.logger = Le.new(log_entries_key, ssl: true, log_level: log_level)
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module ProductionToolkit
2
- VERSION = '0.1.6'
2
+ VERSION = '0.2.0-alpha.1'
3
3
  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.6
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-16 00:00:00.000000000 Z
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: '0'
261
+ version: 1.3.1
262
262
  requirements: []
263
263
  rubyforge_project:
264
- rubygems_version: 2.5.1
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.