leak_profiler 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: 858a9f5099616dfa89103dfdc39b9ea1d3ea1c57f2a0d9cd70f2567e7d67e977
4
- data.tar.gz: a53f3aeedb0d9d64929dbfa8dde45768b164f3fbbb0adf4952ca1f75a39e5c4a
3
+ metadata.gz: f38e71ee118af9012f16f7094a529faab161886bcf96ce02aedeafc6f513f4c6
4
+ data.tar.gz: 52b68f566fcaf407bb5ae1bd7434f1316ea341be6d0c274c5a0b3faf36b679bf
5
5
  SHA512:
6
- metadata.gz: a8940ecc511d02760bb585e6c2bdb82740a97fd47264924e6ad233a0eebcd90b90724e5e11915543c24e1d60dbafd988e38de80d2b775898e74ac1c9e0c786a0
7
- data.tar.gz: 778f50f3c181d01dfd90a067f47959feb31a0998df767fee645b60019535cbb0dc0663fc785f2b99adb3039eafd9fddf6d0a1d2291254f0c2f65202aaaf18c97
6
+ metadata.gz: 37b790174706f1b8bee068581a5ecf26662a52abdd16892c1108ca8972f0bb137d94267af50362d955a066c7909dd6acb88e0d8d5435ea446f6b47fed9d0fceb
7
+ data.tar.gz: 1104d9a5a231bca9404fa8753fe93ebcb4a606f6b10823a15ec678613fe448aaa814ac6376aab382e16c327246915c01aac448bda1cf059528f15a27173a568f
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Watson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -3,6 +3,7 @@
3
3
  require_relative 'allocations'
4
4
  require_relative 'memory_usage'
5
5
  require 'fileutils'
6
+ require 'logger'
6
7
 
7
8
  class LeakProfiler
8
9
  def initialize(output_dir: './leak_profiler')
metadata CHANGED
@@ -1,14 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leak_profiler
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
  - Watson
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-31 00:00:00.000000000 Z
11
- dependencies: []
10
+ date: 2025-04-01 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: logger
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '1.7'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '1.7'
12
26
  description: A simple profiler for Ruby to detect memory leak.
13
27
  email:
14
28
  - watson1978@gmail.com
@@ -18,6 +32,7 @@ extra_rdoc_files: []
18
32
  files:
19
33
  - ".rubocop.yml"
20
34
  - ".rubocop_todo.yml"
35
+ - LICENSE
21
36
  - README.md
22
37
  - Rakefile
23
38
  - lib/leak_profiler.rb
@@ -25,7 +40,8 @@ files:
25
40
  - lib/leak_profiler/leak_profiler.rb
26
41
  - lib/leak_profiler/memory_usage.rb
27
42
  homepage: https://github.com/Watson1978/leak_profiler
28
- licenses: []
43
+ licenses:
44
+ - MIT
29
45
  metadata:
30
46
  homepage_uri: https://github.com/Watson1978/leak_profiler
31
47
  source_code_uri: https://github.com/Watson1978/leak_profiler
@@ -44,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
44
60
  - !ruby/object:Gem::Version
45
61
  version: '0'
46
62
  requirements: []
47
- rubygems_version: 3.6.6
63
+ rubygems_version: 3.6.2
48
64
  specification_version: 4
49
65
  summary: A simple profiler for Ruby to detect memory leak.
50
66
  test_files: []