hitimes 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d79a16734531380e103efb7bf1af93e5c4e465185f5a47f1c0ab6d2dcc8bb5e7
4
- data.tar.gz: deb8a23bdc8e0f35b6dccbd6fd4535ffdfa4c5bdd11ff44fa488a53baa090245
3
+ metadata.gz: 1657f67861e20c4744a997d3b5be397e5c352056d56f30677efc4bcc1c480149
4
+ data.tar.gz: a54cbd0990923d2df4bab8fbc0993adbc3f92a67cfe4f5571f069726a47f0626
5
5
  SHA512:
6
- metadata.gz: 358edcfe776e98c69100f01065d5f9ac12452353736180f8bf1d04e240cddc1bafcc43078b949c26ef40709acce3f2ac28bb65fed28a7e45301dd2a9c607a4ac
7
- data.tar.gz: 3c6296fd094227654048f8bda301435442d6c0169b12322253ba07b1486a4137549ff4f3f11e7f5f09cd3c12f4a78eb92ba9055ebd99d5b6a4eab452ac4f16db
6
+ metadata.gz: dd5fed101b1260c167c6eeee03ae9f65670136ab6e73821260a799d6aaefa780a7144de4951053441d9ac736c7f7368b60b3f78d44fffbd7e49c17cddada3fdf
7
+ data.tar.gz: 448643b3611d7161d5ac67a7d7b9112b96719c57b29bc2ca165fb512b3e3615a3a9ce97318b967a07863e00f47bd70eafcf8cbd602e6e56fefdc5a4a6a7dfbf0
data/HISTORY.md CHANGED
@@ -1,4 +1,7 @@
1
1
  # Hitimes Changelog
2
+ ## Versino 3.1.0 - 2025-01-24
3
+ * Update the supported ruby versions to be 3.1 and up
4
+
2
5
  ## Version 3.0.0 - 2024-05-01
3
6
 
4
7
  * Migrated to SemaphoreCI for doing full test runs on all active ruby versions.
data/hitimes.gemspec CHANGED
@@ -1,18 +1,18 @@
1
1
  # DO NOT EDIT - This file is automatically generated
2
2
  # Make changes to Manifest.txt and/or Rakefile and regenerate
3
3
  # -*- encoding: utf-8 -*-
4
- # stub: hitimes 3.0.0 ruby lib
4
+ # stub: hitimes 3.1.0 ruby lib
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "hitimes".freeze
8
- s.version = "3.0.0".freeze
8
+ s.version = "3.1.0".freeze
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
11
11
  s.metadata = { "bug_tracker_uri" => "https://github.com/copiousfreetime/hitimes/issues", "changelog_uri" => "https://github.com/copiousfreetime/hitimes/blob/master/HISTORY.md", "homepage_uri" => "https://github.com/copiousfreetime/hitimes", "source_code_uri" => "https://github.com/copiousfreetime/hitimes" } if s.respond_to? :metadata=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["Jeremy Hinegardner".freeze]
14
14
  s.bindir = "exe".freeze
15
- s.date = "2024-05-01"
15
+ s.date = "2025-01-24"
16
16
  s.description = "A fast, high resolution timer library for recording performance metrics.".freeze
17
17
  s.email = "jeremy@copiousfreetime.org".freeze
18
18
  s.extra_rdoc_files = ["CONTRIBUTING.md".freeze, "HISTORY.md".freeze, "LICENSE.txt".freeze, "Manifest.txt".freeze, "README.md".freeze]
@@ -21,6 +21,6 @@ Gem::Specification.new do |s|
21
21
  s.licenses = ["ISC".freeze]
22
22
  s.rdoc_options = ["--main".freeze, "README.md".freeze, "--markup".freeze, "tomdoc".freeze]
23
23
  s.required_ruby_version = Gem::Requirement.new(">= 3.0.0".freeze)
24
- s.rubygems_version = "3.5.9".freeze
24
+ s.rubygems_version = "3.6.3".freeze
25
25
  s.summary = "A fast, high resolution timer library for recording performance metrics.".freeze
26
26
  end
@@ -59,7 +59,7 @@ module Hitimes
59
59
  # +additional_data+ may be anything that follows the +to_hash+ protocol
60
60
  #
61
61
  def initialize(name, additional_data = {})
62
- super(name, additional_data)
62
+ super
63
63
  @stats = Stats.new
64
64
  @current_interval = Interval.new
65
65
  end
@@ -58,7 +58,7 @@ module Hitimes
58
58
  # +additional_data+ may be anything that follows the +to_hash+ protocol
59
59
  #
60
60
  def initialize(name, additional_data = {})
61
- super(name, additional_data)
61
+ super
62
62
  @timed_stats = Stats.new
63
63
  @value_stats = Stats.new
64
64
  @current_interval = Interval.new
@@ -31,7 +31,7 @@ module Hitimes
31
31
  # +additional_data+ may be anything that follows the +to_hash+ protocol.
32
32
  #
33
33
  def initialize(name, additional_data = {})
34
- super(name, additional_data)
34
+ super
35
35
  @stats = Stats.new
36
36
  end
37
37
 
@@ -6,5 +6,5 @@
6
6
  #++
7
7
 
8
8
  module Hitimes
9
- VERSION = "3.0.0"
9
+ VERSION = "3.1.0"
10
10
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hitimes
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Hinegardner
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-05-01 00:00:00.000000000 Z
10
+ date: 2025-01-24 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: A fast, high resolution timer library for recording performance metrics.
14
13
  email: jeremy@copiousfreetime.org
@@ -47,7 +46,6 @@ metadata:
47
46
  changelog_uri: https://github.com/copiousfreetime/hitimes/blob/master/HISTORY.md
48
47
  homepage_uri: https://github.com/copiousfreetime/hitimes
49
48
  source_code_uri: https://github.com/copiousfreetime/hitimes
50
- post_install_message:
51
49
  rdoc_options:
52
50
  - "--main"
53
51
  - README.md
@@ -66,8 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
64
  - !ruby/object:Gem::Version
67
65
  version: '0'
68
66
  requirements: []
69
- rubygems_version: 3.5.9
70
- signing_key:
67
+ rubygems_version: 3.6.3
71
68
  specification_version: 4
72
69
  summary: A fast, high resolution timer library for recording performance metrics.
73
70
  test_files: []