vigilant-ruby 0.0.1 → 0.0.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: 566350402bd00065cebbcc1e5da5bf587dc4be324f9fa313a7b7f5d9719cb837
4
- data.tar.gz: 83eccb0b3bd2f73257387ced365a23c0e1b1c0a9e75fb2ccd95144537147783d
3
+ metadata.gz: d5231f90612c18b1f92a9a2b0b1dcfb088ffc1a3c784061d61b15620a501d61d
4
+ data.tar.gz: 2a7089a1d46c396cd9d83eb594ac0cce35318f658af0b6df417415413f11f623
5
5
  SHA512:
6
- metadata.gz: 14b68b0e635d54639104bcb4ed8de3eafb262aec287cf69a17a6fc9ddde3f4d0106db08b58ef80f4c85a522e4c0d2f557928d952b22af3744bb4f90d54336582
7
- data.tar.gz: 5a4ca0ee07974027fc5ef68f63c9e1e1dcb96707458520475c9cb113b9c0e619653681b3a6993e3b98955343d7514bf7acc58225dd23941b67da9f71367359bb
6
+ metadata.gz: 7c4f8e6f74900e48d2dd4efa4fdcd731ae5d937dd4c0ef7e5663e1ccdca17367a193cab9498f15365ba37c619af479cb527326e1e459a51ff43a6ae2ac7471ba
7
+ data.tar.gz: 67973be9091d86c9c02feef4f88f15b929d78d2eb612b5347245ce6e358ee42db9186a56b1ea3e79944c9074b334425f063495abb7679d139bcc53b4d056569c
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vigilant
4
- VERSION = '0.0.1'
4
+ VERSION = '0.0.2'
5
5
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'version'
4
- require 'logger'
3
+ require 'vigilant/version'
4
+ require 'vigilant/logger'
5
5
 
6
6
  # Vigilant is a logging service that provides structured logging capabilities
7
7
  # with asynchronous batch processing and thread-safe operations.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vigilant-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vigilant
@@ -101,9 +101,9 @@ extensions: []
101
101
  extra_rdoc_files: []
102
102
  files:
103
103
  - README.md
104
- - lib/logger.rb
105
- - lib/version.rb
106
- - lib/vigilant.rb
104
+ - lib/vigilant-ruby.rb
105
+ - lib/vigilant/logger.rb
106
+ - lib/vigilant/version.rb
107
107
  homepage: https://vigilant.run
108
108
  licenses:
109
109
  - MIT
@@ -111,7 +111,6 @@ metadata:
111
111
  homepage_uri: https://vigilant.run
112
112
  source_code_uri: https://github.com/vigilant-run/vigilant-ruby
113
113
  changelog_uri: https://vigilant.run/changelog
114
- rubygems_mfa_required: 'true'
115
114
  rdoc_options: []
116
115
  require_paths:
117
116
  - lib
File without changes