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: d8ad4bee4f54104bc67e920a7a53e4ed9800a1ece41d5a2609b2149530afa825
4
- data.tar.gz: 77f0c50431b82d61b9257d3c603f039c94496496df8e6dddcf5dec99b8493082
3
+ metadata.gz: c0f1b6d7c9bfee46e1c51576217b97a8e42332b74824e576028294cb4b15ffb1
4
+ data.tar.gz: f967a2eaed89c8aaf8011cb21324ef045c4d6468b1c18c62f43336a31c1f19cd
5
5
  SHA512:
6
- metadata.gz: 147eb4b111548c0ac0ca900c21f058b5690db956b5db81db085689911500c2510843fe662208e6316f3891d8067e4f353fbe626474368494ebf5d04e9a5d1ece
7
- data.tar.gz: 55bdbbd82d4058c5abe0e5640403b1520d55901630da189d62b08ccdd6d8dbb2a5a8469bd18697b9d35554aa6ef8d1bbdfa7bdcda9eaf02d1adbcbf721be0049
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/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.1'
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.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/log_pretty.rb
27
- - lib/log_pretty/ansi_printer.rb
28
- - lib/log_pretty/version.rb
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