log-pretty 0.1.0 → 0.1.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0f1b6d7c9bfee46e1c51576217b97a8e42332b74824e576028294cb4b15ffb1
|
|
4
|
+
data.tar.gz: f967a2eaed89c8aaf8011cb21324ef045c4d6468b1c18c62f43336a31c1f19cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6021ac91b701395847e531492f52b825e013265365edff9fc6464f992643e43c3f1fa56a14f1f95f8ff359e3817f9c08fd24b12166e9820a7f146f0b1b0f3710
|
|
7
|
+
data.tar.gz: f62472955350d6764a3bf85e9bcc3dcd716984c9765000332a895d45615ad9326d280efa14b5bf603ab074e08e5761ac1a3c4e869b99d65f51992e3397412e2f
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jesse vonBergen
|
|
@@ -23,9 +23,9 @@ files:
|
|
|
23
23
|
- LICENSE.txt
|
|
24
24
|
- README.md
|
|
25
25
|
- Rakefile
|
|
26
|
-
- lib/
|
|
27
|
-
- lib/
|
|
28
|
-
- lib/
|
|
26
|
+
- lib/log-pretty.rb
|
|
27
|
+
- lib/log-pretty/ansi_printer.rb
|
|
28
|
+
- lib/log-pretty/version.rb
|
|
29
29
|
- sig/log_pretty.rbs
|
|
30
30
|
homepage: https://github.com/jvon1904/log-pretty
|
|
31
31
|
licenses:
|
|
File without changes
|