minitest-stackprofit 1.0.0 → 1.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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/History.rdoc +6 -1
- data/lib/minitest/stackprofit_plugin.rb +3 -3
- data.tar.gz.sig +0 -0
- metadata +5 -5
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b851f64b6737ebd0fc35f425af2b101adc8f5a32eadbb9ca89b14e6427db029d
|
|
4
|
+
data.tar.gz: 061fbd9da42b94564e5d8a930a56d490e92116d3309d9554fed088d01cbc5cf1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8593b367c1c13c3868353dc573eead26fa3de6f5d414d144abd546d86628fbca203b2f8eb37cef0cc31ae7a641f2007fa1f2e0d98625d5b4dbac05b9e5baca6
|
|
7
|
+
data.tar.gz: 60469f1b3d3a8864986b729e78f025f9bca67381e49d1ede7d2c93ad28dd54e9e8e6dfac0b80d713806c880ccee30a354e025390356b95bac82f0e7aced9e4a1
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/History.rdoc
CHANGED
|
@@ -2,13 +2,13 @@ require "minitest"
|
|
|
2
2
|
|
|
3
3
|
module Minitest
|
|
4
4
|
module Stackprofit
|
|
5
|
-
VERSION = "1.0.
|
|
5
|
+
VERSION = "1.0.1"
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
@stackprof_path = nil
|
|
9
9
|
@stackprof_type = :wall
|
|
10
10
|
|
|
11
|
-
def self.
|
|
11
|
+
def self.plugin_stackprofit_options opts, options # :nodoc:
|
|
12
12
|
opts.on "--stackprof [path]", String, "Save profiling to [path]." do |s|
|
|
13
13
|
@stackprof_path = s || "stackprof.dump"
|
|
14
14
|
end
|
|
@@ -18,7 +18,7 @@ module Minitest
|
|
|
18
18
|
end
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
def self.
|
|
21
|
+
def self.plugin_stackprofit_init options # :nodoc:
|
|
22
22
|
if @stackprof_path then
|
|
23
23
|
require "stackprof"
|
|
24
24
|
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minitest-stackprofit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Davis
|
|
@@ -29,7 +29,7 @@ cert_chain:
|
|
|
29
29
|
JFmxn4h9YO/pVdB962BdBNNDia0kgIjI3ENnkLq0dKpYU3+F3KhEuTksLO0L6X/V
|
|
30
30
|
YsuyUzsMz6GQA4khyaMgKNSD
|
|
31
31
|
-----END CERTIFICATE-----
|
|
32
|
-
date: 2022-
|
|
32
|
+
date: 2022-12-05 00:00:00.000000000 Z
|
|
33
33
|
dependencies:
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: stackprof
|
|
@@ -71,14 +71,14 @@ dependencies:
|
|
|
71
71
|
requirements:
|
|
72
72
|
- - "~>"
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '3.
|
|
74
|
+
version: '3.26'
|
|
75
75
|
type: :development
|
|
76
76
|
prerelease: false
|
|
77
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
78
78
|
requirements:
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '3.
|
|
81
|
+
version: '3.26'
|
|
82
82
|
description: |-
|
|
83
83
|
A minitest plugin that runs your tests and outputs a stackprof
|
|
84
84
|
profile. This lets you quickly and easily determine the bottlenecks in
|
|
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
|
-
rubygems_version: 3.3.
|
|
128
|
+
rubygems_version: 3.3.12
|
|
129
129
|
signing_key:
|
|
130
130
|
specification_version: 4
|
|
131
131
|
summary: A minitest plugin that runs your tests and outputs a stackprof profile
|
metadata.gz.sig
CHANGED
|
Binary file
|