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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8ad4bee4f54104bc67e920a7a53e4ed9800a1ece41d5a2609b2149530afa825
4
- data.tar.gz: 77f0c50431b82d61b9257d3c603f039c94496496df8e6dddcf5dec99b8493082
3
+ metadata.gz: b76eeaff96868dc49d2154febd9054fd912a9d5b593b8f9bab209ef89761c68c
4
+ data.tar.gz: dd3d975d3fee71bca1afac432f7ce1be25f15540f2ed5301af95db6850efacd8
5
5
  SHA512:
6
- metadata.gz: 147eb4b111548c0ac0ca900c21f058b5690db956b5db81db085689911500c2510843fe662208e6316f3891d8067e4f353fbe626474368494ebf5d04e9a5d1ece
7
- data.tar.gz: 55bdbbd82d4058c5abe0e5640403b1520d55901630da189d62b08ccdd6d8dbb2a5a8469bd18697b9d35554aa6ef8d1bbdfa7bdcda9eaf02d1adbcbf721be0049
6
+ metadata.gz: 3b5c276dbcc4b75bc5a87c9d6f2345366a87d32312292d51a21d87e664b119230299f27d89895ef3e8248eb175d0ee884716aa44036d451c4286af5019a575c3
7
+ data.tar.gz: 8147910eead7fd63130b61d57dedb3d97d726d3cdf5298a6e0a79a1ac3931cba345f477fadf26f923089020d416e0cea9c8487666974eadccc591f47b97300e7
data/.rubocop.yml CHANGED
@@ -11,4 +11,7 @@ Metrics/MethodLength:
11
11
  Max: 50
12
12
 
13
13
  Metrics/CyclomaticComplexity:
14
- Max: 10
14
+ Max: 10
15
+
16
+ Naming/FileName:
17
+ Enabled: false
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/log_pretty.rb' with the following content.
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,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LogPretty
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.2'
5
5
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'log_pretty/version'
4
- require_relative 'log_pretty/ansi_printer'
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.0
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 terminal
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/log_pretty.rb
27
- - lib/log_pretty/ansi_printer.rb
28
- - lib/log_pretty/version.rb
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