log-pretty 0.1.0 → 0.1.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 +4 -4
- data/.rubocop.yml +4 -1
- data/README.md +1 -1
- data/lib/{log_pretty → log-pretty}/version.rb +1 -1
- data/lib/{log_pretty.rb → log-pretty.rb} +2 -2
- metadata +7 -6
- /data/lib/{log_pretty → log-pretty}/ansi_printer.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b76eeaff96868dc49d2154febd9054fd912a9d5b593b8f9bab209ef89761c68c
|
|
4
|
+
data.tar.gz: dd3d975d3fee71bca1afac432f7ce1be25f15540f2ed5301af95db6850efacd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b5c276dbcc4b75bc5a87c9d6f2345366a87d32312292d51a21d87e664b119230299f27d89895ef3e8248eb175d0ee884716aa44036d451c4286af5019a575c3
|
|
7
|
+
data.tar.gz: 8147910eead7fd63130b61d57dedb3d97d726d3cdf5298a6e0a79a1ac3931cba345f477fadf26f923089020d416e0cea9c8487666974eadccc591f47b97300e7
|
data/.rubocop.yml
CHANGED
data/README.md
CHANGED
|
@@ -26,7 +26,7 @@ $ gem install log-pretty
|
|
|
26
26
|
|
|
27
27
|
Then, if you would like to use the `#logp` method as a top-level method, inlude the `LogPretty` module.
|
|
28
28
|
|
|
29
|
-
In Rails, this can be done by adding fild `config/initializers/
|
|
29
|
+
In Rails, this can be done by adding fild `config/initializers/log-pretty.rb' with the following content.
|
|
30
30
|
|
|
31
31
|
```ruby
|
|
32
32
|
include LogPretty
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative '
|
|
4
|
-
require_relative '
|
|
3
|
+
require_relative 'log-pretty/version'
|
|
4
|
+
require_relative 'log-pretty/ansi_printer'
|
|
5
5
|
|
|
6
6
|
# Extend module for global access to #logp method
|
|
7
7
|
module LogPretty
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: log-pretty
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jesse vonBergen
|
|
@@ -10,7 +10,8 @@ bindir: exe
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2024-09-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: Provides intuitive methods for outputting ANSI escaped content to
|
|
13
|
+
description: Provides intuitive methods for outputting ANSI escaped content to the
|
|
14
|
+
terminal
|
|
14
15
|
email:
|
|
15
16
|
- jvon1904@gmail.com
|
|
16
17
|
executables: []
|
|
@@ -23,9 +24,9 @@ files:
|
|
|
23
24
|
- LICENSE.txt
|
|
24
25
|
- README.md
|
|
25
26
|
- Rakefile
|
|
26
|
-
- lib/
|
|
27
|
-
- lib/
|
|
28
|
-
- lib/
|
|
27
|
+
- lib/log-pretty.rb
|
|
28
|
+
- lib/log-pretty/ansi_printer.rb
|
|
29
|
+
- lib/log-pretty/version.rb
|
|
29
30
|
- sig/log_pretty.rbs
|
|
30
31
|
homepage: https://github.com/jvon1904/log-pretty
|
|
31
32
|
licenses:
|
|
@@ -52,5 +53,5 @@ requirements: []
|
|
|
52
53
|
rubygems_version: 3.5.20
|
|
53
54
|
signing_key:
|
|
54
55
|
specification_version: 4
|
|
55
|
-
summary: Provides intuitive methods for outputting ANSI escaped content to terminal
|
|
56
|
+
summary: Provides intuitive methods for outputting ANSI escaped content to the terminal
|
|
56
57
|
test_files: []
|
|
File without changes
|