cogger 0.10.1 → 0.10.2

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: 435cee709f01b8b36c962047efc71c2ef01f740b2786e72e284a72b6c035e273
4
- data.tar.gz: 14cbf47a43d7c762395e7b417f708519fd29fe7c6f16a82a517f44196dd0726a
3
+ metadata.gz: e41bba1ada87909924c484b28952c7d6deb14606f58215cd349d34adb7613401
4
+ data.tar.gz: 6fbf6287b15685be7d08758de20d851a6e7772253903e2aede043443c12b6b2a
5
5
  SHA512:
6
- metadata.gz: 3bf125cd2434a3be264b040844564f51eb4392162c9d4c30772a84a4ec19bacc8940abbbe73a1ad0c228250d93f728ac8ba987604497df01f9fcacdd45687a55
7
- data.tar.gz: 67d74bbf7b90e055cce0346df7527261530dbb04528e2a103d3dc8e2e8bffd6aa1816472f1853fdb448248a7a906bd057f9a2396f7ab504053a3aa6b58ca5971
6
+ metadata.gz: 8fb755a46602af26b52717311e0850db572d61c1a5aaf42939659d195996202240d26aa739bacbb55e3bb7dbbf74c7be3ae5ba2cb46f923100f8b2f766380479
7
+ data.tar.gz: aab1c87e0796c09ff2a46ba5da18e1adca5cba760ea6fe96361a1e622ec8ce572f9b33956ee1199e661be60e64fb5ad7692e733cbd135a94daf5adc459240737
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -27,27 +27,27 @@ toc::[]
27
27
 
28
28
  *Emoji*
29
29
 
30
- image::https://alchemists.io/images/projects/cogger/screenshots/emoji.png[Emoji,width=150,height=130]
30
+ image::https://alchemists.io/images/projects/cogger/screenshots/emoji.png[Emoji,width=204,height=251]
31
31
 
32
32
  *Color*
33
33
 
34
- image::https://alchemists.io/images/projects/cogger/screenshots/color.png[Color,width=150,height=125]
34
+ image::https://alchemists.io/images/projects/cogger/screenshots/color.png[Color,width=181,height=247]
35
35
 
36
36
  *Simple*
37
37
 
38
- image::https://alchemists.io/images/projects/cogger/screenshots/simple.png[Simple,width=150,height=125]
38
+ image::https://alchemists.io/images/projects/cogger/screenshots/simple.png[Simple,width=274,height=253]
39
39
 
40
40
  *Detail*
41
41
 
42
- image::https://alchemists.io/images/projects/cogger/screenshots/detail.png[Detail,width=350,height=130]
42
+ image::https://alchemists.io/images/projects/cogger/screenshots/detail.png[Detail,width=476,height=256]
43
43
 
44
44
  *JSON*
45
45
 
46
- image::https://alchemists.io/images/projects/cogger/screenshots/json.png[JSON,width=803,height=130]
46
+ image::https://alchemists.io/images/projects/cogger/screenshots/json.png[JSON,width=929,height=256]
47
47
 
48
48
  *Rack*
49
49
 
50
- image::https://alchemists.io/images/projects/cogger/screenshots/rack.png[Rack,width=534,height=130]
50
+ image::https://alchemists.io/images/projects/cogger/screenshots/rack.png[Rack,width=656,height=252]
51
51
 
52
52
  == Requirements
53
53
 
data/cogger.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "cogger"
5
- spec.version = "0.10.1"
5
+ spec.version = "0.10.2"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://alchemists.io/projects/cogger"
@@ -5,39 +5,39 @@ require "tone"
5
5
  module Cogger
6
6
  # Provides a global regsitry for global configuration.
7
7
  module Registry
8
- def self.extended target
9
- target.add_alias(:debug, :white)
10
- .add_alias(:info, :green)
11
- .add_alias(:warn, :yellow)
12
- .add_alias(:error, :red)
13
- .add_alias(:fatal, :bold, :white, :on_red)
14
- .add_alias(:any, :dim, :bright_white)
15
- .add_emoji(:debug, "🔎")
16
- .add_emoji(:info, "🟢")
17
- .add_emoji(:warn, "⚠️ ")
18
- .add_emoji(:error, "🛑")
19
- .add_emoji(:fatal, "🔥")
20
- .add_emoji(:any, "⚫️")
21
- .add_filter(:_csrf)
22
- .add_filter(:password)
23
- .add_filter(:password_confirmation)
24
- .add_formatter(:color, Cogger::Formatters::Color)
25
- .add_formatter(
26
- :detail,
27
- Cogger::Formatters::Simple,
28
- "[%<id>s] [%<severity>s] [%<at>s] %<message>s"
29
- )
30
- .add_formatter(
31
- :emoji,
32
- Cogger::Formatters::Color,
33
- "%<emoji:dynamic>s %<message:dynamic>s"
34
- )
35
- .add_formatter(:json, Cogger::Formatters::JSON)
36
- .add_formatter(:simple, Cogger::Formatters::Simple)
37
- .add_formatter :rack,
38
- Cogger::Formatters::Simple,
39
- "[%<id>s] [%<severity>s] [%<at>s] %<verb>s %<status>s %<duration>s " \
40
- "%<ip>s %<path>s %<length>s %<params>s"
8
+ def self.extended descendant
9
+ descendant.add_alias(:debug, :white)
10
+ .add_alias(:info, :green)
11
+ .add_alias(:warn, :yellow)
12
+ .add_alias(:error, :red)
13
+ .add_alias(:fatal, :bold, :white, :on_red)
14
+ .add_alias(:any, :dim, :bright_white)
15
+ .add_emoji(:debug, "🔎")
16
+ .add_emoji(:info, "🟢")
17
+ .add_emoji(:warn, "⚠️ ")
18
+ .add_emoji(:error, "🛑")
19
+ .add_emoji(:fatal, "🔥")
20
+ .add_emoji(:any, "⚫️")
21
+ .add_filter(:_csrf)
22
+ .add_filter(:password)
23
+ .add_filter(:password_confirmation)
24
+ .add_formatter(:color, Cogger::Formatters::Color)
25
+ .add_formatter(
26
+ :detail,
27
+ Cogger::Formatters::Simple,
28
+ "[%<id>s] [%<severity>s] [%<at>s] %<message>s"
29
+ )
30
+ .add_formatter(
31
+ :emoji,
32
+ Cogger::Formatters::Color,
33
+ "%<emoji:dynamic>s %<message:dynamic>s"
34
+ )
35
+ .add_formatter(:json, Cogger::Formatters::JSON)
36
+ .add_formatter(:simple, Cogger::Formatters::Simple)
37
+ .add_formatter :rack,
38
+ Cogger::Formatters::Simple,
39
+ "[%<id>s] [%<severity>s] [%<at>s] %<verb>s %<status>s " \
40
+ "%<duration>s %<ip>s %<path>s %<length>s %<params>s"
41
41
  end
42
42
 
43
43
  def add_alias(key, *styles)
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cogger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -35,7 +35,7 @@ cert_chain:
35
35
  3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
36
  gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
37
37
  -----END CERTIFICATE-----
38
- date: 2023-06-19 00:00:00.000000000 Z
38
+ date: 2023-07-29 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: refinements
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
133
  - !ruby/object:Gem::Version
134
134
  version: '0'
135
135
  requirements: []
136
- rubygems_version: 3.4.14
136
+ rubygems_version: 3.4.17
137
137
  signing_key:
138
138
  specification_version: 4
139
139
  summary: A customizable and feature rich logger.
metadata.gz.sig CHANGED
@@ -1,2 +1,3 @@
1
- GU�`J`Kgq����Ծ��v�0 �����n*��~cmfI
2
- "��@�k�-��l/�����܃EN���w+<l���fG3a��o��*�ߩ��p�e
1
+ �����˴�T3�<j���g f(�s��15�@��dw��+'��6H�^RI@=�aBЃ�5���Y7���=�!���v@��6��YW��M.DyWa��„���b"^�?���(����y�N9�����$�{lkᏨw�=�GH���7$E�����kV(Y*o��&-�)[%��e4�1�<<��򝐽ԧ�|
2
+ �˒P!��.��N��\���B��vL��B��l��������yk0�~}d����>����j�;��f*�(>�|iӐ�︟��ٶ�p�P�{���'�� ��&�+e�!)(e�e5�F�R�}I �3�/�Te���os�S�r $����i3`�X
3
+ &�j���f�{Ǐ�nt6׫N}��+52