on_strum-logs 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: 8185297963aeab5a76271658b4efca0e09834f30d1252ee89b3100f70cfd791a
4
- data.tar.gz: d994258f60226574ea0c6f8a4c5729a16000f6300ade60003da39ffea8e4af9a
3
+ metadata.gz: 631e24b1bfbfe68706b9ff96ccb0a4db7275e73c4ef74ec33b395f4b26cefc7e
4
+ data.tar.gz: e220ed192fac45ddb61c9faa49cc9981da28bec964eb259f79934141dfcdf2de
5
5
  SHA512:
6
- metadata.gz: 5a790f196642f7d785cc71f1c4fc3ea16ba14c73e62ec21a7cfc8a0845a580d5102a7b720c417465e41d570c5fa52d2f5630fba52d26f3c6db96c3331193b587
7
- data.tar.gz: f57c8918327915eba796f8c28c41544f29e5af213bc2194621b99ccb78cbc8fc45e5e7b2ec89264db27f5cdc0dd7e0aeeb1f23333ee7aae411cc8247c209a896
6
+ metadata.gz: 171bc63a8c00b0090ab194e909deae8df6430f007c7dd4ca8fad11b04a8b78f9d8fb6038bf7c112ad59caa731fc732af9214c9404fba114ccecb0c0290dea060
7
+ data.tar.gz: 47814455011e5e03e4dc8385db18bc5ce16b42ca26e005c50e173082448b11a29e5c866716a3e5b21f0edc73c6ac2a3739dc766fdef83e2f97907551300eeb7d
data/bin/console CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'bundler/setup'
5
- require 'on_strum'
5
+ require 'on_strum/logs'
6
6
 
7
7
  # You can add fixtures and/or initialization code here to make experimenting
8
8
  # with your gem easier. You can also use a different console, if you like.
@@ -21,7 +21,5 @@ module OnStrum
21
21
  require_relative 'logger/base'
22
22
  require_relative 'logger/default'
23
23
  end
24
-
25
- require_relative '../logs'
26
24
  end
27
25
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OnStrum
4
4
  module Logs
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  end
data/lib/on_strum/logs.rb CHANGED
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative 'logs/core'
4
+
3
5
  module OnStrum
4
6
  module Logs
5
7
  class << self
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: on_strum-logs
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
  - Vladislav Trotsenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-15 00:00:00.000000000 Z
11
+ date: 2023-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: amazing_print
@@ -97,7 +97,6 @@ files:
97
97
  - LICENSE.txt
98
98
  - bin/console
99
99
  - bin/setup
100
- - lib/on_strum.rb
101
100
  - lib/on_strum/logs.rb
102
101
  - lib/on_strum/logs/configuration.rb
103
102
  - lib/on_strum/logs/core.rb
data/lib/on_strum.rb DELETED
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module OnStrum
4
- module Logs
5
- require_relative 'on_strum/logs/core'
6
- end
7
- end