p99-ruby 0.0.0 → 0.0.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.
Files changed (7) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +1 -2
  4. data/Rakefile +5 -2
  5. data/lib/p99/version.rb +3 -3
  6. data/lib/p99.rb +2 -2
  7. metadata +19 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98525c2aea216fa55b3be0d0e7310ce4a075dbd7281e69fa03197b1089f833ed
4
- data.tar.gz: e4d6eb852729b60ee302aa493bcb1b95b49dc9385e17e6d023b03b858b4db856
3
+ metadata.gz: da3930d99a75f03beaf92509ba1f074b1b12587937a82ec6f5abdd8ee68f2d65
4
+ data.tar.gz: 57d5fbbcf56edfebe4ffdabc8b10378dcd6660688855bb975f13a54c20fbacb1
5
5
  SHA512:
6
- metadata.gz: 7e760fc7a8f737cd64c67bc11abe774a1b91ac99dce2d7eac3635159cdd949e329e8cbafc3a229ec079e3339c9516a9e5af4f734512749770287057824a11779
7
- data.tar.gz: 39bb4e4b7fa3bf928ea3e807e8fa73532cf3d0ac86032160d9de239ff65b6d02443528c78f41581df7a46bcfa5b667abdf8475efc9317471fed530d48cd90ed8
6
+ metadata.gz: db0d21d44fb05142aa260cb5696b3f5d53dbdf6c696d09e8804b4122805337ee8e199d8215cb7690aefb4e32efccd4f30ecc2407e14cae0a9f16ac355a3854a6
7
+ data.tar.gz: 58eb910c50c6f7a380d30ae935421e79e31184f3ae455d3a554e75527c8740255494e14238c0da0729feaaf7d4e96b431caf72c74922cb583d43204c282949c4
data/LICENSE CHANGED
@@ -1,7 +1,6 @@
1
1
  p99.Ruby - BSD 3-Clause License
2
2
 
3
3
  Copyright (c) 2026, Matthew Wilson and Synesis Information Systems
4
-
5
4
  All rights reserved.
6
5
 
7
6
  Redistribution and use in source and binary forms, with or without
@@ -29,3 +28,4 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29
28
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30
29
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
30
  POSSIBILITY OF SUCH DAMAGE.
31
+
data/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  Low-cost generation of performance percentiles (p50, p90, p99, p99.9, etc.), for Ruby
4
4
 
5
-
6
5
  ![Language](https://img.shields.io/badge/Ruby-CC342D?style=flat&logo=ruby&logoColor=white)
7
6
  [![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
8
7
  [![GitHub release](https://img.shields.io/github/v/release/synesissoftware/p99.Ruby.svg)](https://github.com/synesissoftware/p99.Ruby/releases/latest)
@@ -51,7 +50,7 @@ require 'p99'
51
50
 
52
51
  ## Components
53
52
 
54
- T.B.C.
53
+ **p99.Ruby** currently ships the **`P99`** root module and version metadata (`require 'p99'`). The low-overhead logarithmic histogram / percentile query surface present in the sibling **p99** libraries (fixed-size buckets, push duration, query p50 / p90 / p99 / …) is not yet implemented in this Ruby tree; see the **Related projects** links for the mature C and other-language APIs this gem is intended to mirror.
55
54
 
56
55
 
57
56
  ## Project Information
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Rakefile for p99.Ruby
2
4
 
3
5
  require 'rake/testtask'
@@ -5,8 +7,9 @@ require 'rake/testtask'
5
7
 
6
8
  Rake::TestTask.new do |tt|
7
9
 
8
- tt.libs << "lib"
9
- tt.name = "test"
10
+ tt.libs << 'lib'
11
+ tt.libs << 'test'
12
+ tt.name = 'test'
10
13
  tt.test_files = FileList['test/**/tc_*.rb']
11
14
  tt.verbose = true
12
15
  end
data/lib/p99/version.rb CHANGED
@@ -1,11 +1,11 @@
1
-
1
+ # frozen_string_literal: true
2
2
  # ######################################################################## #
3
3
  # File: p99/version.rb
4
4
  #
5
5
  # Purpose: Version for p99.Ruby library
6
6
  #
7
7
  # Created: 4th August 2026
8
- # Updated: 4th August 2026
8
+ # Updated: 28th August 2026
9
9
  #
10
10
  # Home: http://github.com/synesissoftware/p99.Ruby
11
11
  #
@@ -50,7 +50,7 @@
50
50
  module P99
51
51
 
52
52
  # Current version of the p99.Ruby library
53
- VERSION = '0.0.0'
53
+ VERSION = '0.0.1'
54
54
 
55
55
  private
56
56
  # @!visibility private
data/lib/p99.rb CHANGED
@@ -1,11 +1,11 @@
1
-
1
+ # frozen_string_literal: true
2
2
  # ######################################################################## #
3
3
  # File: p99.rb
4
4
  #
5
5
  # Purpose: Primary require for p99.Ruby library
6
6
  #
7
7
  # Created: 4th August 2026
8
- # Updated: 4th August 2026
8
+ # Updated: 28th August 2026
9
9
  #
10
10
  # Home: http://github.com/synesissoftware/p99.Ruby
11
11
  #
metadata CHANGED
@@ -1,40 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: p99-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-04 00:00:00.000000000 Z
11
+ date: 2026-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xqsr3
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '0.39'
20
17
  - - ">="
21
18
  - !ruby/object:Gem::Version
22
- version: 0.39.4
19
+ version: 0.39.10
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '1'
23
23
  type: :development
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '0.39'
30
27
  - - ">="
31
28
  - !ruby/object:Gem::Version
32
- version: 0.39.4
29
+ version: 0.39.10
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '1'
33
33
  description: |
34
34
  Low-cost generation of performance percentiles (p50, p90, p99, p99.9, etc.), for Ruby.
35
35
 
36
36
  p99.Ruby is the Ruby implementation of the p99 family of libraries.
37
- email: matthew@synesis.com.au
37
+ email:
38
+ - matthew@synesis.com.au
38
39
  executables: []
39
40
  extensions: []
40
41
  extra_rdoc_files: []
@@ -46,10 +47,14 @@ files:
46
47
  - lib/p99/version.rb
47
48
  - test/unit/tc_version.rb
48
49
  - test/unit/ts_all.rb
49
- homepage: http://github.com/synesissoftware/p99.Ruby
50
+ homepage: https://github.com/synesissoftware/p99.Ruby
50
51
  licenses:
51
52
  - BSD-3-Clause
52
- metadata: {}
53
+ metadata:
54
+ bug_tracker_uri: https://github.com/synesissoftware/p99.Ruby/issues
55
+ changelog_uri: https://github.com/synesissoftware/p99.Ruby/blob/master/CHANGES.md
56
+ homepage_uri: https://github.com/synesissoftware/p99.Ruby
57
+ source_code_uri: https://github.com/synesissoftware/p99.Ruby
53
58
  post_install_message:
54
59
  rdoc_options: []
55
60
  require_paths:
@@ -61,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
61
66
  version: '2.0'
62
67
  - - "<"
63
68
  - !ruby/object:Gem::Version
64
- version: '4'
69
+ version: '5'
65
70
  required_rubygems_version: !ruby/object:Gem::Requirement
66
71
  requirements:
67
72
  - - ">="