rspec-tracer 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/README.md +12 -4
- data/lib/rspec_tracer/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c266f7b90880f1c3ab8c9e272f5abee4834154c6c9b6541d50fe7701655da6e7
|
4
|
+
data.tar.gz: ce2101a5c35cc334c5e3c061842c0ba27e0c9e7f8ce77e109a047f0eda108a82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a7152dc475afb4e2ab42aeaf3798108edce0580fcc00a1c2a03b0f319f925633bae59245b7a570938d34372cbb4d134daff5909adf2785325794edcfab36fcd
|
7
|
+
data.tar.gz: 6a30e7b361d877404692229f60bd63d6e19088c4ac627838aae40af357851a0f2757b4561c843b4d91d6e3f41a6a3c3a29989bd94e1fde33efde701b735852fb
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -14,16 +14,24 @@ Knowing the examples and files dependency gives us a better insight into the cod
|
|
14
14
|
and we have **a clear idea of what to test for when making any changes**. With this data,
|
15
15
|
we can also analyze the coupling between different components and much more.
|
16
16
|
|
17
|
+
Read more on the intention and the implementation idea [here](./RSPEC_TRACER.md).
|
18
|
+
|
19
|
+
## Note
|
20
|
+
|
21
|
+
**RSpec Tracer is currently available for use in the local development
|
22
|
+
environment only.** Support for CI is work in progress.
|
23
|
+
|
24
|
+
**If you find this gem could be a helpful addition to your project, give it a try
|
25
|
+
on local and report any issues you encountered.**
|
26
|
+
|
27
|
+
## Demo
|
28
|
+
|
17
29
|
**First Run**
|
18
30
|
![](./readme_files/first_run.gif)
|
19
31
|
|
20
32
|
**Next Run**
|
21
33
|
![](./readme_files/next_run.gif)
|
22
34
|
|
23
|
-
## Note
|
24
|
-
|
25
|
-
**RSpec Tracer is currently available for use in the local development
|
26
|
-
environment only.** Support for CI is work in progress.
|
27
35
|
|
28
36
|
## Installation
|
29
37
|
|
data/lib/rspec_tracer/version.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-tracer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Abhimanyu Singh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: docile
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 1.1.0
|
20
|
+
- - "~>"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '1.1'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: 1.1.0
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '1.1'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: rspec-core
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -97,7 +103,7 @@ licenses:
|
|
97
103
|
- MIT
|
98
104
|
metadata:
|
99
105
|
homepage_uri: https://github.com/avmnu-sng/rspec-tracer
|
100
|
-
source_code_uri: https://github.com/avmnu-sng/rspec-tracer/tree/v0.
|
106
|
+
source_code_uri: https://github.com/avmnu-sng/rspec-tracer/tree/v0.3.0
|
101
107
|
changelog_uri: https://github.com/avmnu-sng/rspec-tracer/blob/main/CHANGELOG.md
|
102
108
|
bug_tracker_uri: https://github.com/avmnu-sng/rspec-tracer/issues
|
103
109
|
post_install_message:
|