heap_periscope_agent 0.0.0 → 0.1.0

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: 4c859a494c5e24980e456f5de068960eb7f7d823ea3c7e5f0dc11008962d564e
4
- data.tar.gz: 05d5c1bf1886fec7c7eff1f73de7210c6580ce7be679bd9173d46fda1c99a632
3
+ metadata.gz: 26c1519c5f34b72f63b341f5b3bd5bcdefaab803da97b88fd59e7971fcf9de7a
4
+ data.tar.gz: d5f3f63e496b04726790d16095298133ce410f991b2eb1dd8675245f7083aad2
5
5
  SHA512:
6
- metadata.gz: 24d398857915e014a307cb9580a4e4464827ec8f10180d3f826a486a6bf3d3f29667e1c80b2bee9383cddfcb1eccb1d1436d0f5bc71488a13f144e16ebe1e0b8
7
- data.tar.gz: e94d5b7f0b7fe0ed16b0b92a83be81c34a94e27d4fbddb46f66c7e51880fdca72a523ae7223b3666e991eb1928b56bdd422ae6b9b900401ce3cfe006088ee830
6
+ metadata.gz: ce334cdc9dbe12bb33b536b0a0331c9d2574637dee691997767adeff498f4347ef7495b41ed08c7c51057409d032b800a84606b7d0e0535a836b6ca51030db0b
7
+ data.tar.gz: a09edf18ed45aae75e8978440e6ec36e486280b9ad376ef802901cab933d67ddf83f188a8b429ffaaf3793a3fe4f7ea412e3aebb7f59e84ab79a60571e9393a0
@@ -0,0 +1,3 @@
1
+ module HeapPeriscopeAgent
2
+ VERSION = "0.1.0"
3
+ end
@@ -1,3 +1,4 @@
1
+ require_relative './heap_periscope_agent/version.rb'
1
2
  require_relative './heap_periscope_agent/configuration.rb'
2
3
  require_relative './heap_periscope_agent/collector.rb'
3
4
  require_relative './heap_periscope_agent/reporter.rb'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heap_periscope_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Natanael Siahaan
@@ -9,7 +9,11 @@ bindir: bin
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies: []
12
- description: Real-time Garbage Collection & Object Allocation Metrics
12
+ description: |
13
+ Heap Periscope Agent offers deep insights into your Ruby application's memory behavior.
14
+ It collects and reports real-time Garbage Collection (GC) statistics and object
15
+ allocation patterns, empowering developers to identify memory leaks, optimize usage,
16
+ and enhance performance. Highly configurable and designed for minimal overhead.
13
17
  email: js.jonathan.n@gmail.com
14
18
  executables: []
15
19
  extensions: []
@@ -19,10 +23,15 @@ files:
19
23
  - lib/heap_periscope_agent/collector.rb
20
24
  - lib/heap_periscope_agent/configuration.rb
21
25
  - lib/heap_periscope_agent/reporter.rb
22
- homepage: https://rubygems.org/gems/heap_periscope_agent
26
+ - lib/heap_periscope_agent/version.rb
27
+ homepage: https://github.com/codepawpaw/heap_periscope_agent
23
28
  licenses:
24
29
  - MIT
25
- metadata: {}
30
+ metadata:
31
+ homepage_uri: https://github.com/codepawpaw/heap_periscope_agent
32
+ source_code_uri: https://github.com/codepawpaw/heap_periscope_agent
33
+ changelog_uri: https://github.com/codepawpaw/heap_periscope_agent/blob/master/CHANGELOG.md
34
+ bug_tracker_uri: https://github.com/codepawpaw/heap_periscope_agent/issues
26
35
  rdoc_options: []
27
36
  require_paths:
28
37
  - lib
@@ -39,5 +48,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
39
48
  requirements: []
40
49
  rubygems_version: 3.6.9
41
50
  specification_version: 4
42
- summary: Real-time Garbage Collection & Object Allocation Metrics
51
+ summary: Monitors Ruby application memory with real-time GC and object allocation
52
+ metrics.
43
53
  test_files: []