epilog 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +3 -3
- data/CHANGELOG.md +17 -12
- data/LICENSE.txt +20 -201
- data/README.md +5 -22
- data/lib/epilog/filter/blacklist.rb +2 -1
- data/lib/epilog/filter/filter_parameters.rb +3 -5
- data/lib/epilog/filter/hash_key.rb +3 -2
- data/lib/epilog/mock_logger.rb +0 -2
- data/lib/epilog/rails/action_controller_subscriber.rb +2 -4
- data/lib/epilog/rails/active_job_subscriber.rb +3 -7
- data/lib/epilog/rails/ext/event_delegate.rb +12 -3
- data/lib/epilog/version.rb +5 -1
- metadata +18 -148
- data/.gitignore +0 -12
- data/.rspec +0 -2
- data/.rubocop.yml +0 -34
- data/.travis.yml +0 -42
- data/Gemfile +0 -13
- data/Rakefile +0 -13
- data/bin/check-version +0 -6
- data/bin/console +0 -16
- data/bin/rake +0 -18
- data/bin/rspec +0 -18
- data/bin/rubocop +0 -18
- data/bin/yard +0 -18
- data/bin/yardoc +0 -18
- data/bin/yri +0 -18
- data/epilog.gemspec +0 -35
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 034ff527f27b5bc41a2d055b3224afb73fdadc95e7c0b1fd2df86c86cc71db02
|
4
|
+
data.tar.gz: '010087e2788e3f9e5e3a2550ab3f5dc415924bbdd777846483b650786c6f8547'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7692d82f84ac6416fc7c1ae6ef98e2b67b15e3033799c567c2899b7684507cfd06a30133fbdb3d35b5a0184e7f4af1c8c95da7345db7a5e96caae121b2c29163
|
7
|
+
data.tar.gz: 49e8232ee95b2435377b80eae597f39d0e95e82b7e848cd4619814cefbf3bdccff4b5b8e224b7166291675aec40b963d244a29abbfb4f516ef7a6d128db4f58f
|
data/.yardopts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
--markup markdown
|
2
|
-
|
3
|
-
-
|
4
|
-
|
2
|
+
--markup-provider redcarpet
|
3
|
+
--no-private
|
4
|
+
--no-api
|
data/CHANGELOG.md
CHANGED
@@ -1,34 +1,39 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.8.0
|
4
|
+
|
5
|
+
- Update license to MIT [#19](https://github.com/nullscreen/epilog/pull/19)
|
6
|
+
- Update gems and CI [#20](https://github.com/nullscreen/epilog/pull/20)
|
7
|
+
|
3
8
|
## 0.7.0
|
4
9
|
|
5
|
-
- Add support for Rails 6 [#18](https://github.com/
|
10
|
+
- Add support for Rails 6 [#18](https://github.com/nullscreen/epilog/pull/18)
|
6
11
|
|
7
12
|
## 0.6.0
|
8
13
|
|
9
|
-
- Add support for Rails 5 API-only controllers [#17](https://github.com/
|
14
|
+
- Add support for Rails 5 API-only controllers [#17](https://github.com/nullscreen/epilog/pull/17)
|
10
15
|
|
11
16
|
## 0.5.0
|
12
17
|
|
13
|
-
- Add options to enable/disable start and end logs [#15](https://github.com/
|
14
|
-
- Fix with_context to use ensure [#16](https://github.com/
|
18
|
+
- Add options to enable/disable start and end logs [#15](https://github.com/nullscreen/epilog/pull/15)
|
19
|
+
- Fix with_context to use ensure [#16](https://github.com/nullscreen/epilog/pull/16)
|
15
20
|
|
16
21
|
## 0.4.0
|
17
22
|
|
18
|
-
- Add context support to Logger [#12](https://github.com/
|
23
|
+
- Add context support to Logger [#12](https://github.com/nullscreen/epilog/pull/12)
|
19
24
|
|
20
25
|
## 0.3.1
|
21
26
|
|
22
|
-
- Add context to request log [#10](https://github.com/
|
27
|
+
- Add context to request log [#10](https://github.com/nullscreen/epilog/pull/10)
|
23
28
|
|
24
29
|
## 0.3
|
25
30
|
|
26
|
-
- Update development dependencies [#1](https://github.com/
|
27
|
-
- Allow controllers to add context to logs [#2](https://github.com/
|
28
|
-
- Fix removing Rails default parameters when filter_parameters are set [#4](https://github.com/
|
29
|
-
- Add a filter using Rails filter_parameters [#3](https://github.com/
|
30
|
-
- Change action view logs to DEBUG [#5](https://github.com/
|
31
|
-
- Filter all request data using filter_parameters [#6](https://github.com/
|
31
|
+
- Update development dependencies [#1](https://github.com/nullscreen/epilog/pull/1)
|
32
|
+
- Allow controllers to add context to logs [#2](https://github.com/nullscreen/epilog/pull/2)
|
33
|
+
- Fix removing Rails default parameters when filter_parameters are set [#4](https://github.com/nullscreen/epilog/pull/4)
|
34
|
+
- Add a filter using Rails filter_parameters [#3](https://github.com/nullscreen/epilog/pull/3)
|
35
|
+
- Change action view logs to DEBUG [#5](https://github.com/nullscreen/epilog/pull/5)
|
36
|
+
- Filter all request data using filter_parameters [#6](https://github.com/nullscreen/epilog/pull/6)
|
32
37
|
|
33
38
|
## 0.2
|
34
39
|
|
data/LICENSE.txt
CHANGED
@@ -1,201 +1,20 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
-
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
-
exercising permissions granted by this License.
|
25
|
-
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
27
|
-
including but not limited to software source code, documentation
|
28
|
-
source, and configuration files.
|
29
|
-
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
31
|
-
transformation or translation of a Source form, including but
|
32
|
-
not limited to compiled object code, generated documentation,
|
33
|
-
and conversions to other media types.
|
34
|
-
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
36
|
-
Object form, made available under the License, as indicated by a
|
37
|
-
copyright notice that is included in or attached to the work
|
38
|
-
(an example is provided in the Appendix below).
|
39
|
-
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
-
the Work and Derivative Works thereof.
|
47
|
-
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
49
|
-
the original version of the Work and any modifications or additions
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
-
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
64
|
-
subsequently incorporated within the Work.
|
65
|
-
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
72
|
-
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
-
where such license applies only to those patent claims licensable
|
79
|
-
by such Contributor that are necessarily infringed by their
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
82
|
-
institute patent litigation against any entity (including a
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
85
|
-
or contributory patent infringement, then any patent licenses
|
86
|
-
granted to You under this License for that Work shall terminate
|
87
|
-
as of the date such litigation is filed.
|
88
|
-
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
91
|
-
modifications, and in Source or Object form, provided that You
|
92
|
-
meet the following conditions:
|
93
|
-
|
94
|
-
(a) You must give any other recipients of the Work or
|
95
|
-
Derivative Works a copy of this License; and
|
96
|
-
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
98
|
-
stating that You changed the files; and
|
99
|
-
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
102
|
-
attribution notices from the Source form of the Work,
|
103
|
-
excluding those notices that do not pertain to any part of
|
104
|
-
the Derivative Works; and
|
105
|
-
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
108
|
-
include a readable copy of the attribution notices contained
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
111
|
-
of the following places: within a NOTICE text file distributed
|
112
|
-
as part of the Derivative Works; within the Source form or
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
114
|
-
within a display generated by the Derivative Works, if and
|
115
|
-
wherever such third-party notices normally appear. The contents
|
116
|
-
of the NOTICE file are for informational purposes only and
|
117
|
-
do not modify the License. You may add Your own attribution
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
120
|
-
that such additional attribution notices cannot be construed
|
121
|
-
as modifying the License.
|
122
|
-
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
124
|
-
may provide additional or different license terms and conditions
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
128
|
-
the conditions stated in this License.
|
129
|
-
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
133
|
-
this License, without any additional terms or conditions.
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
-
the terms of any separate license agreement you may have executed
|
136
|
-
with Licensor regarding such Contributions.
|
137
|
-
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
140
|
-
except as required for reasonable and customary use in describing the
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
-
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
152
|
-
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
158
|
-
incidental, or consequential damages of any character arising as a
|
159
|
-
result of this License or out of the use or inability to use the
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
162
|
-
other commercial damages or losses), even if such Contributor
|
163
|
-
has been advised of the possibility of such damages.
|
164
|
-
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
-
or other liability obligations and/or rights consistent with this
|
169
|
-
License. However, in accepting such obligations, You may act only
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
174
|
-
of your accepting any such warranty or additional liability.
|
175
|
-
|
176
|
-
END OF TERMS AND CONDITIONS
|
177
|
-
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
179
|
-
|
180
|
-
To apply the Apache License to your work, attach the following
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
-
replaced with your own identifying information. (Don't include
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
184
|
-
comment syntax for the file format. We also recommend that a
|
185
|
-
file or class name and description of purpose be included on the
|
186
|
-
same "printed page" as the copyright notice for easier
|
187
|
-
identification within third-party archives.
|
188
|
-
|
189
|
-
Copyright 2018 Warner Bros. Entertainment Inc.
|
190
|
-
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
-
you may not use this file except in compliance with the License.
|
193
|
-
You may obtain a copy of the License at
|
194
|
-
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
-
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
-
See the License for the specific language governing permissions and
|
201
|
-
limitations under the License.
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright © 2022 Nullscreen
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the “Software”), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
# Epilog Gem
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/epilog.svg)](https://badge.fury.io/rb/epilog)
|
4
|
-
[![
|
5
|
-
[![
|
6
|
-
[![
|
7
|
-
[![Inline docs](http://inch-ci.org/github/machinima/epilog.svg?branch=master)](http://inch-ci.org/github/machinima/epilog)
|
4
|
+
[![CI](https://github.com/nullscreen/epilog/workflows/CI/badge.svg)](https://github.com/nullscreen/epilog/actions?query=workflow%3ACI+branch%main)
|
5
|
+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/28734dd732d34bc3b014760508b2d3da)](https://www.codacy.com/gh/nullscreen/epilog/dashboard)
|
6
|
+
[![Code Coverage](https://codecov.io/gh/nullscreen/epilog/branch/main/graph/badge.svg?token=3Q3M49C5ZI)](https://codecov.io/gh/nullscreen/epilog)
|
8
7
|
|
9
8
|
A JSON logger with Rails support.
|
10
9
|
|
@@ -13,7 +12,7 @@ A JSON logger with Rails support.
|
|
13
12
|
Read below to get started, or see the [API Documentation][api-docs] for more
|
14
13
|
details.
|
15
14
|
|
16
|
-
[api-docs]: https://www.rubydoc.info/github/
|
15
|
+
[api-docs]: https://www.rubydoc.info/github/nullscreen/epilog
|
17
16
|
|
18
17
|
## Installation
|
19
18
|
|
@@ -51,20 +50,4 @@ experiment.
|
|
51
50
|
## Contributing
|
52
51
|
|
53
52
|
Bug reports and pull requests are welcome on GitHub at
|
54
|
-
https://github.com/
|
55
|
-
|
56
|
-
## License
|
57
|
-
|
58
|
-
Copyright 2018 Warner Bros. Entertainment Inc.
|
59
|
-
|
60
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
61
|
-
you may not use this file except in compliance with the License.
|
62
|
-
You may obtain a copy of the License at
|
63
|
-
|
64
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
65
|
-
|
66
|
-
Unless required by applicable law or agreed to in writing, software
|
67
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
68
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
69
|
-
See the License for the specific language governing permissions and
|
70
|
-
limitations under the License.
|
53
|
+
https://github.com/nullscreen/epilog.
|
@@ -8,11 +8,9 @@ module Epilog
|
|
8
8
|
def filter_parameters
|
9
9
|
return @filter_parameters if @filter_parameters
|
10
10
|
|
11
|
-
filtered =
|
12
|
-
|
13
|
-
|
14
|
-
end
|
15
|
-
]
|
11
|
+
filtered = ::Rails.application.config.filter_parameters.map do |p|
|
12
|
+
[p.to_s.downcase, true]
|
13
|
+
end.to_h
|
16
14
|
|
17
15
|
@filter_parameters = filtered if ::Rails.initialized?
|
18
16
|
filtered
|
data/lib/epilog/mock_logger.rb
CHANGED
@@ -7,7 +7,6 @@ module Epilog
|
|
7
7
|
reset
|
8
8
|
end
|
9
9
|
|
10
|
-
# rubocop:disable MethodLength
|
11
10
|
def add(severity, message = nil, progname = nil)
|
12
11
|
severity ||= Logger::UNKNOWN
|
13
12
|
return true if severity < level
|
@@ -24,7 +23,6 @@ module Epilog
|
|
24
23
|
|
25
24
|
write(format_severity(severity), current_time, prog, message)
|
26
25
|
end
|
27
|
-
# rubocop:enable MethodLength
|
28
26
|
alias log add
|
29
27
|
|
30
28
|
def reopen(_logdev = nil)
|
@@ -1,6 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# rubocop:disable ClassLength
|
4
3
|
module Epilog
|
5
4
|
module Rails
|
6
5
|
class ActionControllerSubscriber < LogSubscriber
|
@@ -79,7 +78,7 @@ module Epilog
|
|
79
78
|
end
|
80
79
|
end
|
81
80
|
|
82
|
-
def log_end(event)
|
81
|
+
def log_end(event)
|
83
82
|
request = if config.double_request_logs
|
84
83
|
short_request_hash(event)
|
85
84
|
else
|
@@ -97,7 +96,7 @@ module Epilog
|
|
97
96
|
end
|
98
97
|
end
|
99
98
|
|
100
|
-
def request_hash(event)
|
99
|
+
def request_hash(event)
|
101
100
|
request = event.payload[:request]
|
102
101
|
param_filter = request.send(:parameter_filter)
|
103
102
|
|
@@ -178,4 +177,3 @@ module Epilog
|
|
178
177
|
end
|
179
178
|
end
|
180
179
|
end
|
181
|
-
# rubocop:enable ClassLength
|
@@ -3,7 +3,6 @@
|
|
3
3
|
module Epilog
|
4
4
|
module Rails
|
5
5
|
class ActiveJobSubscriber < LogSubscriber
|
6
|
-
# rubocop:disable Metrics/MethodLength
|
7
6
|
def enqueue(event)
|
8
7
|
ex = event.payload[:exception_object]
|
9
8
|
|
@@ -14,8 +13,8 @@ module Epilog
|
|
14
13
|
elsif event.payload[:aborted]
|
15
14
|
info do
|
16
15
|
event_hash(
|
17
|
-
'Failed enqueuing job, a before_enqueue callback' \
|
18
|
-
|
16
|
+
'Failed enqueuing job, a before_enqueue callback ' \
|
17
|
+
'halted the enqueuing execution.',
|
19
18
|
event
|
20
19
|
)
|
21
20
|
end
|
@@ -23,7 +22,6 @@ module Epilog
|
|
23
22
|
info { event_hash('Enqueued job', event) }
|
24
23
|
end
|
25
24
|
end
|
26
|
-
# rubocop:enable Metrics/MethodLength
|
27
25
|
|
28
26
|
def enqueue_at(event)
|
29
27
|
enqueue(event)
|
@@ -37,7 +35,6 @@ module Epilog
|
|
37
35
|
end
|
38
36
|
|
39
37
|
# rubocop:disable Metrics/MethodLength
|
40
|
-
# rubocop:disable Metrics/AbcSize
|
41
38
|
def perform(event)
|
42
39
|
ex = event.payload[:exception_object]
|
43
40
|
if ex
|
@@ -52,7 +49,7 @@ module Epilog
|
|
52
49
|
error do
|
53
50
|
event_hash(
|
54
51
|
'Error performing job, a before_perform ' \
|
55
|
-
|
52
|
+
'callback halted the job execution',
|
56
53
|
event
|
57
54
|
).merge(
|
58
55
|
metrics: {
|
@@ -73,7 +70,6 @@ module Epilog
|
|
73
70
|
pop_context
|
74
71
|
end
|
75
72
|
# rubocop:enable Metrics/MethodLength
|
76
|
-
# rubocop:enable Metrics/AbcSize
|
77
73
|
|
78
74
|
private
|
79
75
|
|
@@ -11,6 +11,15 @@ module Epilog
|
|
11
11
|
end
|
12
12
|
end
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
# @api external
|
15
|
+
module ActiveSupport
|
16
|
+
module Notifications
|
17
|
+
class Fanout
|
18
|
+
module Subscribers
|
19
|
+
class Evented
|
20
|
+
include Epilog::EventDelegateExt
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/lib/epilog/version.rb
CHANGED
metadata
CHANGED
@@ -1,43 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: epilog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Howard
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: bundler
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.12'
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '1.12'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: byebug
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '11.0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '11.0'
|
41
13
|
- !ruby/object:Gem::Dependency
|
42
14
|
name: combustion
|
43
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,20 +24,6 @@ dependencies:
|
|
52
24
|
- - "~>"
|
53
25
|
- !ruby/object:Gem::Version
|
54
26
|
version: '1.3'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: irb
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
27
|
- !ruby/object:Gem::Dependency
|
70
28
|
name: rails
|
71
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,90 +44,34 @@ dependencies:
|
|
86
44
|
- - "<"
|
87
45
|
- !ruby/object:Gem::Version
|
88
46
|
version: '7'
|
89
|
-
- !ruby/object:Gem::Dependency
|
90
|
-
name: rake
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
92
|
-
requirements:
|
93
|
-
- - "~>"
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version: '13.0'
|
96
|
-
type: :development
|
97
|
-
prerelease: false
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '13.0'
|
103
|
-
- !ruby/object:Gem::Dependency
|
104
|
-
name: redcarpet
|
105
|
-
requirement: !ruby/object:Gem::Requirement
|
106
|
-
requirements:
|
107
|
-
- - "~>"
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '3.5'
|
110
|
-
type: :development
|
111
|
-
prerelease: false
|
112
|
-
version_requirements: !ruby/object:Gem::Requirement
|
113
|
-
requirements:
|
114
|
-
- - "~>"
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: '3.5'
|
117
47
|
- !ruby/object:Gem::Dependency
|
118
48
|
name: rspec
|
119
49
|
requirement: !ruby/object:Gem::Requirement
|
120
50
|
requirements:
|
121
51
|
- - "~>"
|
122
52
|
- !ruby/object:Gem::Version
|
123
|
-
version: '3.
|
53
|
+
version: '3.11'
|
124
54
|
type: :development
|
125
55
|
prerelease: false
|
126
56
|
version_requirements: !ruby/object:Gem::Requirement
|
127
57
|
requirements:
|
128
58
|
- - "~>"
|
129
59
|
- !ruby/object:Gem::Version
|
130
|
-
version: '3.
|
60
|
+
version: '3.11'
|
131
61
|
- !ruby/object:Gem::Dependency
|
132
62
|
name: rspec-rails
|
133
63
|
requirement: !ruby/object:Gem::Requirement
|
134
64
|
requirements:
|
135
65
|
- - "~>"
|
136
66
|
- !ruby/object:Gem::Version
|
137
|
-
version:
|
67
|
+
version: '5.1'
|
138
68
|
type: :development
|
139
69
|
prerelease: false
|
140
70
|
version_requirements: !ruby/object:Gem::Requirement
|
141
71
|
requirements:
|
142
72
|
- - "~>"
|
143
73
|
- !ruby/object:Gem::Version
|
144
|
-
version:
|
145
|
-
- !ruby/object:Gem::Dependency
|
146
|
-
name: rubocop
|
147
|
-
requirement: !ruby/object:Gem::Requirement
|
148
|
-
requirements:
|
149
|
-
- - '='
|
150
|
-
- !ruby/object:Gem::Version
|
151
|
-
version: '0.75'
|
152
|
-
type: :development
|
153
|
-
prerelease: false
|
154
|
-
version_requirements: !ruby/object:Gem::Requirement
|
155
|
-
requirements:
|
156
|
-
- - '='
|
157
|
-
- !ruby/object:Gem::Version
|
158
|
-
version: '0.75'
|
159
|
-
- !ruby/object:Gem::Dependency
|
160
|
-
name: simplecov
|
161
|
-
requirement: !ruby/object:Gem::Requirement
|
162
|
-
requirements:
|
163
|
-
- - "~>"
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
version: '0.17'
|
166
|
-
type: :development
|
167
|
-
prerelease: false
|
168
|
-
version_requirements: !ruby/object:Gem::Requirement
|
169
|
-
requirements:
|
170
|
-
- - "~>"
|
171
|
-
- !ruby/object:Gem::Version
|
172
|
-
version: '0.17'
|
74
|
+
version: '5.1'
|
173
75
|
- !ruby/object:Gem::Dependency
|
174
76
|
name: sqlite3
|
175
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -177,9 +79,6 @@ dependencies:
|
|
177
79
|
- - "~>"
|
178
80
|
- !ruby/object:Gem::Version
|
179
81
|
version: '1.3'
|
180
|
-
- - "<"
|
181
|
-
- !ruby/object:Gem::Version
|
182
|
-
version: '1.5'
|
183
82
|
type: :development
|
184
83
|
prerelease: false
|
185
84
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -187,49 +86,17 @@ dependencies:
|
|
187
86
|
- - "~>"
|
188
87
|
- !ruby/object:Gem::Version
|
189
88
|
version: '1.3'
|
190
|
-
|
191
|
-
- !ruby/object:Gem::Version
|
192
|
-
version: '1.5'
|
193
|
-
- !ruby/object:Gem::Dependency
|
194
|
-
name: yard
|
195
|
-
requirement: !ruby/object:Gem::Requirement
|
196
|
-
requirements:
|
197
|
-
- - "~>"
|
198
|
-
- !ruby/object:Gem::Version
|
199
|
-
version: 0.9.11
|
200
|
-
type: :development
|
201
|
-
prerelease: false
|
202
|
-
version_requirements: !ruby/object:Gem::Requirement
|
203
|
-
requirements:
|
204
|
-
- - "~>"
|
205
|
-
- !ruby/object:Gem::Version
|
206
|
-
version: 0.9.11
|
207
|
-
description:
|
89
|
+
description:
|
208
90
|
email:
|
209
91
|
- jmhoward0@gmail.com
|
210
92
|
executables: []
|
211
93
|
extensions: []
|
212
94
|
extra_rdoc_files: []
|
213
95
|
files:
|
214
|
-
- ".gitignore"
|
215
|
-
- ".rspec"
|
216
|
-
- ".rubocop.yml"
|
217
|
-
- ".travis.yml"
|
218
96
|
- ".yardopts"
|
219
97
|
- CHANGELOG.md
|
220
|
-
- Gemfile
|
221
98
|
- LICENSE.txt
|
222
99
|
- README.md
|
223
|
-
- Rakefile
|
224
|
-
- bin/check-version
|
225
|
-
- bin/console
|
226
|
-
- bin/rake
|
227
|
-
- bin/rspec
|
228
|
-
- bin/rubocop
|
229
|
-
- bin/yard
|
230
|
-
- bin/yardoc
|
231
|
-
- bin/yri
|
232
|
-
- epilog.gemspec
|
233
100
|
- lib/epilog.rb
|
234
101
|
- lib/epilog/context_logging.rb
|
235
102
|
- lib/epilog/filter.rb
|
@@ -254,11 +121,14 @@ files:
|
|
254
121
|
- lib/epilog/rails/log_subscriber.rb
|
255
122
|
- lib/epilog/rails/railtie.rb
|
256
123
|
- lib/epilog/version.rb
|
257
|
-
homepage: https://github.com/
|
124
|
+
homepage: https://github.com/nullscreen/epilog
|
258
125
|
licenses:
|
259
|
-
-
|
260
|
-
metadata:
|
261
|
-
|
126
|
+
- MIT
|
127
|
+
metadata:
|
128
|
+
changelog_uri: https://github.com/nullscreen/epilog/blob/main/CHANGELOG.md
|
129
|
+
documentation_uri: https://www.rubydoc.info/gems/epilog/0.8.0
|
130
|
+
rubygems_mfa_required: 'true'
|
131
|
+
post_install_message:
|
262
132
|
rdoc_options: []
|
263
133
|
require_paths:
|
264
134
|
- lib
|
@@ -266,15 +136,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
266
136
|
requirements:
|
267
137
|
- - ">="
|
268
138
|
- !ruby/object:Gem::Version
|
269
|
-
version: '
|
139
|
+
version: '2.3'
|
270
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
271
141
|
requirements:
|
272
142
|
- - ">="
|
273
143
|
- !ruby/object:Gem::Version
|
274
144
|
version: '0'
|
275
145
|
requirements: []
|
276
|
-
rubygems_version: 3.
|
277
|
-
signing_key:
|
146
|
+
rubygems_version: 3.1.2
|
147
|
+
signing_key:
|
278
148
|
specification_version: 4
|
279
149
|
summary: A JSON logger with Rails support
|
280
150
|
test_files: []
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.rubocop.yml
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
---
|
2
|
-
AllCops:
|
3
|
-
TargetRubyVersion: 2.3
|
4
|
-
|
5
|
-
Layout/AlignArguments:
|
6
|
-
EnforcedStyle: with_fixed_indentation
|
7
|
-
|
8
|
-
Layout/EndAlignment:
|
9
|
-
EnforcedStyleAlignWith: variable
|
10
|
-
|
11
|
-
Layout/AlignParameters:
|
12
|
-
EnforcedStyle: with_fixed_indentation
|
13
|
-
|
14
|
-
Layout/IndentFirstArgument:
|
15
|
-
EnforcedStyle: consistent
|
16
|
-
|
17
|
-
Layout/IndentFirstArrayElement:
|
18
|
-
EnforcedStyle: consistent
|
19
|
-
|
20
|
-
Layout/IndentFirstHashElement:
|
21
|
-
EnforcedStyle: consistent
|
22
|
-
|
23
|
-
Layout/MultilineMethodCallIndentation:
|
24
|
-
EnforcedStyle: indented
|
25
|
-
|
26
|
-
Style/Documentation:
|
27
|
-
Enabled: false
|
28
|
-
|
29
|
-
Style/FrozenStringLiteralComment:
|
30
|
-
Enabled: true
|
31
|
-
EnforcedStyle: always
|
32
|
-
|
33
|
-
Style/EmptyMethod:
|
34
|
-
EnforcedStyle: expanded
|
data/.travis.yml
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
---
|
2
|
-
language: ruby
|
3
|
-
rvm:
|
4
|
-
- 2.3
|
5
|
-
- 2.4
|
6
|
-
- 2.5
|
7
|
-
- 2.6
|
8
|
-
env:
|
9
|
-
matrix:
|
10
|
-
- RAILS_VERSION=5.2
|
11
|
-
- RAILS_VERSION=6.0
|
12
|
-
- RAILS_VERSION=6.1
|
13
|
-
global:
|
14
|
-
- COVERAGE=1
|
15
|
-
- secure: 'nm0AJBULqunzS//h26lblqWHV4Kl0Ij9OPVHMI761TNeFFjP2+KKUVh4qYEKrdUDp7pk9Wa4CdAB9EFLYTJMwyK8RlSkdMLaHGT9xdOqbycBS6vkW2symvdu58SSdsNmnnFV4ebOwEmEcDhAh8SyT0ZkUVhyzGntdzOOZmULi57kOwm8QGrrr4/4xaTmDleZlTDS404nD28wJctaBT8Xa33inaYYrHLKz4xbvFFtptrPb+Arav9enljqiqOu4XjXCIP2eOSP7PHkDPuRn0JKDFT3zKmj0MIUbYkoheQL6R3tMF9zx5gm4GKbd7iunuIsjbFweiveZwZhfNGDPCICuw76UWZCrN4PpomA7XDNjbs0JVRJvnBxLZk5X3w3Sacb4zBTd+U8WH7uAb9qdD7m4xUswox4tPZDPXYObw2PDqtLlsSRn3WDKsnG0/Tt0D+kFsx43MbrvspdOzjarJsIXzU9aJqfE97nM4ZrNcktsW4PrqGflhcDVTKg+kLQj4bO0csR1W/JhGHN0JsVNUmNFN9QqpuRxxI/AmnPBtKR29DDy3BUv1b/kCZbsqq4+wbgCKDJng5VBgpG4VekOiTT2xmlwoxNK4IUAISbu7G/eyCcp33jb+27QE74a13xQsMLvh/wjh1sFEfzJvQzXFL+gjkVP4Z/+uSbc2+8/p+FKm8='
|
16
|
-
|
17
|
-
before_script:
|
18
|
-
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
19
|
-
- chmod +x ./cc-test-reporter
|
20
|
-
- ./cc-test-reporter before-build
|
21
|
-
|
22
|
-
script:
|
23
|
-
- bin/rubocop
|
24
|
-
- bin/rspec --format doc
|
25
|
-
- bin/check-version
|
26
|
-
|
27
|
-
after_script:
|
28
|
-
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
29
|
-
|
30
|
-
jobs:
|
31
|
-
include:
|
32
|
-
- stage: release
|
33
|
-
rvm: 2.6
|
34
|
-
script: skip
|
35
|
-
deploy:
|
36
|
-
provider: rubygems
|
37
|
-
api_key:
|
38
|
-
secure: 'j7W8/nRod4Hhp2zgIauNhWAnwAvd7uxUnKUlnJ6i6ZeBwerPvsT9lT2YahLi/6R1mtSjZH5MpfhUUModgBDx4DWGZxKFrX8K9PnW74V+xLmsOlpElfbLvdxHlfezUdB65GaJX8aIsGFzH57xerUxWIU2V3g/1MRCWOMDDslgmrswlzAIhWEdxI09tnnPpNS6Q0kmpSEkn3eVMpAE+rcWkBR9uFcxHq0W39j4RA5OzQiac6jl50P7eRd9utz5qURCmB7L3VIXyhWHdrOVQgoxZakhOSYdt5+J9kLdYQiz4JNPvq6V/Qc0Tj1vhFMqfwnv2sCKe68qAVdmXBBZn0NZuyt1RRUocBHgW1GfWs0hUuT8xgnyje0aLEP8CyIYnNZMe8L3P45LsfKuoSmWzGc5sy25e6NNJbzyrMR2mgaV3XM4baWSB+F6556r2SZePlvmvKcn7iu4wXIJPR1AEmRl7FWYd+DqCAfemHf7FnDQ/4O7HOvnUJsLYpOp3QRyj9pWxclyK0LghcNSz0vTv1Kx8bLUObdbE8pFn5+31PyCMUfNa36klqZa25Fpwvx31FdRbHglMyqiZj7fXovqCpwnJUcJtRa5RJ0l5ohmJ6fN9n8L1xc8Ximrsv/V0s3A7SK5fg+HnXR8ot7gCYeeIevS6sPWa2Jg5d2kf0alT35EpzI='
|
39
|
-
gem: epilog
|
40
|
-
on:
|
41
|
-
tags: true
|
42
|
-
repo: machinima/epilog
|
data/Gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source 'https://rubygems.org'
|
4
|
-
gemspec
|
5
|
-
|
6
|
-
group :test do
|
7
|
-
gem 'rails', "~> #{ENV.fetch('RAILS_VERSION', '5.2')}"
|
8
|
-
if ENV.fetch('RAILS_VERSION', '5.2').to_f >= 5
|
9
|
-
gem 'sqlite3', '~> 1.4'
|
10
|
-
else
|
11
|
-
gem 'sqlite3', '= 1.3.10' # rubocop:disable Bundler/DuplicatedGem
|
12
|
-
end
|
13
|
-
end
|
data/Rakefile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'bundler/gem_tasks'
|
4
|
-
require 'rspec/core/rake_task'
|
5
|
-
require 'rubocop/rake_task'
|
6
|
-
require 'yard'
|
7
|
-
|
8
|
-
RSpec::Core::RakeTask.new(:spec)
|
9
|
-
RuboCop::RakeTask.new
|
10
|
-
YARD::Rake::YardocTask.new
|
11
|
-
|
12
|
-
task default: :check
|
13
|
-
task check: %i[rubocop spec]
|
data/bin/check-version
DELETED
data/bin/console
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
require 'bundler/setup'
|
5
|
-
require 'epilog'
|
6
|
-
|
7
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
-
# with your gem easier. You can also use a different console, if you like.
|
9
|
-
|
10
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
-
# require "pry"
|
12
|
-
# Pry.start
|
13
|
-
|
14
|
-
require 'byebug'
|
15
|
-
require 'irb'
|
16
|
-
IRB.start
|
data/bin/rake
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'rake' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require 'pathname'
|
12
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
require 'rubygems'
|
16
|
-
require 'bundler/setup'
|
17
|
-
|
18
|
-
load Gem.bin_path('rake', 'rake')
|
data/bin/rspec
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'rspec' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require 'pathname'
|
12
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
require 'rubygems'
|
16
|
-
require 'bundler/setup'
|
17
|
-
|
18
|
-
load Gem.bin_path('rspec-core', 'rspec')
|
data/bin/rubocop
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'rubocop' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require 'pathname'
|
12
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
require 'rubygems'
|
16
|
-
require 'bundler/setup'
|
17
|
-
|
18
|
-
load Gem.bin_path('rubocop', 'rubocop')
|
data/bin/yard
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'yard' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require 'pathname'
|
12
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
require 'rubygems'
|
16
|
-
require 'bundler/setup'
|
17
|
-
|
18
|
-
load Gem.bin_path('yard', 'yard')
|
data/bin/yardoc
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'yardoc' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require 'pathname'
|
12
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
require 'rubygems'
|
16
|
-
require 'bundler/setup'
|
17
|
-
|
18
|
-
load Gem.bin_path('yard', 'yardoc')
|
data/bin/yri
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'yri' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require 'pathname'
|
12
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
require 'rubygems'
|
16
|
-
require 'bundler/setup'
|
17
|
-
|
18
|
-
load Gem.bin_path('yard', 'yri')
|
data/epilog.gemspec
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
lib = File.expand_path('lib', __dir__)
|
4
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
-
require 'epilog/version'
|
6
|
-
|
7
|
-
Gem::Specification.new do |spec|
|
8
|
-
spec.name = 'epilog'
|
9
|
-
spec.version = Epilog::VERSION
|
10
|
-
spec.authors = ['Justin Howard']
|
11
|
-
spec.email = ['jmhoward0@gmail.com']
|
12
|
-
spec.license = 'Apache-2.0'
|
13
|
-
|
14
|
-
spec.summary = 'A JSON logger with Rails support'
|
15
|
-
spec.homepage = 'https://github.com/machinima/epilog'
|
16
|
-
|
17
|
-
spec.files = `git ls-files -z`
|
18
|
-
.split("\x0")
|
19
|
-
.reject { |f| f.match(%r{^spec/}) }
|
20
|
-
spec.require_paths = ['lib']
|
21
|
-
|
22
|
-
spec.add_development_dependency 'bundler', '>= 1.12'
|
23
|
-
spec.add_development_dependency 'byebug', '~> 11.0'
|
24
|
-
spec.add_development_dependency 'combustion', '~> 1.3'
|
25
|
-
spec.add_development_dependency 'irb'
|
26
|
-
spec.add_development_dependency 'rails', '>= 4.2', '< 7'
|
27
|
-
spec.add_development_dependency 'rake', '~> 13.0'
|
28
|
-
spec.add_development_dependency 'redcarpet', '~> 3.5'
|
29
|
-
spec.add_development_dependency 'rspec', '~> 3.4'
|
30
|
-
spec.add_development_dependency 'rspec-rails', '~> 3.8.1'
|
31
|
-
spec.add_development_dependency 'rubocop', '0.75'
|
32
|
-
spec.add_development_dependency 'simplecov', '~> 0.17'
|
33
|
-
spec.add_development_dependency 'sqlite3', '~> 1.3', '< 1.5'
|
34
|
-
spec.add_development_dependency 'yard', '~> 0.9.11'
|
35
|
-
end
|