leak_profiler 0.1.2 → 0.1.3

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: f38e71ee118af9012f16f7094a529faab161886bcf96ce02aedeafc6f513f4c6
4
- data.tar.gz: 52b68f566fcaf407bb5ae1bd7434f1316ea341be6d0c274c5a0b3faf36b679bf
3
+ metadata.gz: 062abe3c1684ea42ac45baabb2b11ab19624fd461af76ee89aff981d0dec4cb4
4
+ data.tar.gz: e048e567ceae885b4ac91ff8b72b611144e131c9462ba1e33589c12e1fd392bc
5
5
  SHA512:
6
- metadata.gz: 37b790174706f1b8bee068581a5ecf26662a52abdd16892c1108ca8972f0bb137d94267af50362d955a066c7909dd6acb88e0d8d5435ea446f6b47fed9d0fceb
7
- data.tar.gz: 1104d9a5a231bca9404fa8753fe93ebcb4a606f6b10823a15ec678613fe448aaa814ac6376aab382e16c327246915c01aac448bda1cf059528f15a27173a568f
6
+ metadata.gz: f023bc3f7a64638d2e63d7a9262a59b61b16459c22dca2d1a1bb5a3c846deb0758ffd525f504863107f0d3a1611f243fea0f55f6e2cdfbb801c8e75b51492b0d
7
+ data.tar.gz: 47fe07ea97905182c7656f9557efee004906a15ffcd8e56d465ad39eb3fe57cfc7878e3cc094b6779d6fb33dc143dfcc1b420c55cbbeb8fc2cea3f8ed03950c0
data/.rubocop.yml CHANGED
@@ -14,6 +14,9 @@ Metrics:
14
14
  Style/Copyright:
15
15
  Enabled: false
16
16
 
17
+ Style/ImplicitRuntimeError:
18
+ Enabled: false
19
+
17
20
  Style/MissingElse:
18
21
  Enabled: false
19
22
 
data/README.md CHANGED
@@ -66,6 +66,10 @@ Referrers ----------------------------------------------------------------------
66
66
  * `max_referrers` (default `3`): Outputs the number of references in order of the amount of memory used.
67
67
  * `report` (defalut `nil`): Specify the logger object if you want to use custom logger.
68
68
 
69
+ > [!WARNING]
70
+ > This uses `ObjectSpace.allocation_sourcefile` method to measurement.
71
+ > It can't get an object allocated information in Ruby core API / C extension library API.
72
+
69
73
  ### `LeakProfiler#report_rss`
70
74
  This method outputs the RSS (Resident Set Size) of the process with CSV format, like:
71
75
 
@@ -80,6 +84,10 @@ elapsed [sec],memory usage (rss) [MB]
80
84
  * Arguments:
81
85
  * `interval` (default `1`): The interval in seconds for report.
82
86
 
87
+ > [!WARNING]
88
+ > This uses this uses `ps` command for measurement.
89
+ > So, this is not supported Windows platform.
90
+
83
91
  ## Contributing
84
92
 
85
93
  Bug reports and pull requests are welcome on GitHub at https://github.com/Watson1978/leak_profiler.
@@ -8,6 +8,8 @@ class LeakProfiler
8
8
  end
9
9
 
10
10
  def report
11
+ raise('Not supported Windows platform because this uses `ps` command for measurement.') if /mingw/.match?(RUBY_PLATFORM)
12
+
11
13
  pid = Process.pid
12
14
 
13
15
  Thread.new do
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leak_profiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Watson
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-01 00:00:00.000000000 Z
10
+ date: 2025-04-05 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: logger