europeana-logging 0.2.4 → 0.2.5
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/README.md +2 -0
- data/lib/europeana/logging/engine.rb +2 -2
- data/lib/europeana/logging/version.rb +1 -1
- data/test/dummy/log/test.log +0 -6
- metadata +30 -30
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 398c9a157b8fd05812bf5a864c9ccbb15f5d4c7c
|
|
4
|
+
data.tar.gz: 5a1ddbbf232ffa4f94747e3213b56089000a7437
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8630d0a53adbd7032eb3780bedf0d9046cf85c922d2a8e64dea4550d05dec8220620ddf3f93c5142aa34e0b2674d0b4872deb42d408adb0fddb1f057d0f256eb
|
|
7
|
+
data.tar.gz: 8ea43a0ab07f40e6512ed29663d1e3406fd8dadbe04f0a949df370f06a5d6f614a49656e4dab8c9b3b770d73f1ab2ab0a8d9d43a427821ac5b6f51cecfa1f791
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Europeana::Logging
|
|
2
2
|
|
|
3
|
+
[](https://travis-ci.org/europeana/europeana-logging-ruby) [](https://hakiri.io/github/europeana/europeana-logging-ruby/develop) [](https://codeclimate.com/github/europeana/europeana-logging-ruby/maintainability) [](https://codeclimate.com/github/europeana/europeana-logging-ruby/test_coverage)
|
|
4
|
+
|
|
3
5
|
Ruby gem providing common logging configuration for Europeana Rails
|
|
4
6
|
applications.
|
|
5
7
|
|
|
@@ -42,8 +42,8 @@ module Europeana
|
|
|
42
42
|
|
|
43
43
|
Rails.logger = LogStashLogger.new(type: :stdout)
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
ApplicationController.superclass.logger = LogStashLogger.new(type: :stdout)
|
|
46
|
+
ApplicationController.superclass.logger.extend(Europeana::Logging::SessionLogging)
|
|
47
47
|
end
|
|
48
48
|
|
|
49
49
|
# Controller concern for session ID logging
|
data/test/dummy/log/test.log
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: europeana-logging
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Doe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-06-
|
|
11
|
+
date: 2018-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -144,45 +144,45 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
144
144
|
version: '0'
|
|
145
145
|
requirements: []
|
|
146
146
|
rubyforge_project:
|
|
147
|
-
rubygems_version: 2.6.
|
|
147
|
+
rubygems_version: 2.6.12
|
|
148
148
|
signing_key:
|
|
149
149
|
specification_version: 4
|
|
150
150
|
summary: Europeana logging
|
|
151
151
|
test_files:
|
|
152
152
|
- test/integration/navigation_test.rb
|
|
153
|
-
- test/test_helper.rb
|
|
154
|
-
- test/europeana/logging_test.rb
|
|
155
|
-
- test/dummy/README.rdoc
|
|
156
|
-
- test/dummy/config.ru
|
|
157
|
-
- test/dummy/public/favicon.ico
|
|
158
153
|
- test/dummy/public/404.html
|
|
159
|
-
- test/dummy/public/422.html
|
|
160
154
|
- test/dummy/public/500.html
|
|
161
|
-
- test/dummy/
|
|
162
|
-
- test/dummy/
|
|
163
|
-
- test/dummy/
|
|
164
|
-
- test/dummy/bin/setup
|
|
165
|
-
- test/dummy/log/test.log
|
|
166
|
-
- test/dummy/app/controllers/application_controller.rb
|
|
167
|
-
- test/dummy/app/assets/stylesheets/application.css
|
|
168
|
-
- test/dummy/app/assets/javascripts/application.js
|
|
169
|
-
- test/dummy/app/views/layouts/application.html.erb
|
|
170
|
-
- test/dummy/app/helpers/application_helper.rb
|
|
171
|
-
- test/dummy/config/routes.rb
|
|
155
|
+
- test/dummy/public/favicon.ico
|
|
156
|
+
- test/dummy/public/422.html
|
|
157
|
+
- test/dummy/config/locales/en.yml
|
|
172
158
|
- test/dummy/config/application.rb
|
|
159
|
+
- test/dummy/config/routes.rb
|
|
160
|
+
- test/dummy/config/environments/development.rb
|
|
161
|
+
- test/dummy/config/environments/production.rb
|
|
162
|
+
- test/dummy/config/environments/test.rb
|
|
163
|
+
- test/dummy/config/secrets.yml
|
|
164
|
+
- test/dummy/config/boot.rb
|
|
165
|
+
- test/dummy/config/environment.rb
|
|
166
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
173
167
|
- test/dummy/config/initializers/wrap_parameters.rb
|
|
168
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
169
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
174
170
|
- test/dummy/config/initializers/session_store.rb
|
|
175
171
|
- test/dummy/config/initializers/assets.rb
|
|
176
172
|
- test/dummy/config/initializers/cookies_serializer.rb
|
|
177
|
-
- test/dummy/config/initializers/mime_types.rb
|
|
178
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
179
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
180
173
|
- test/dummy/config/initializers/inflections.rb
|
|
181
|
-
- test/dummy/
|
|
182
|
-
- test/dummy/
|
|
183
|
-
- test/dummy/
|
|
184
|
-
- test/dummy/
|
|
185
|
-
- test/dummy/
|
|
186
|
-
- test/dummy/config
|
|
187
|
-
- test/dummy/config/boot.rb
|
|
174
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
175
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
176
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
177
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
178
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
179
|
+
- test/dummy/config.ru
|
|
188
180
|
- test/dummy/Rakefile
|
|
181
|
+
- test/dummy/bin/rake
|
|
182
|
+
- test/dummy/bin/bundle
|
|
183
|
+
- test/dummy/bin/setup
|
|
184
|
+
- test/dummy/bin/rails
|
|
185
|
+
- test/dummy/README.rdoc
|
|
186
|
+
- test/dummy/log/test.log
|
|
187
|
+
- test/europeana/logging_test.rb
|
|
188
|
+
- test/test_helper.rb
|