rspec-debugging 0.0.3 → 0.0.4

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: 36fab720f096a8d0db955d8560666e60cfb13e3346bee84fb228ab1638a6784d
4
- data.tar.gz: f45cfa7bbc17ba60a3847c05e6feb38c3fb5dcfdeb93227e250bb8afb6cea75f
3
+ metadata.gz: 18dc39f0ec372fefa54e665b0f8fa941ee58d2e5437d0f7baf165411a7ae3706
4
+ data.tar.gz: bd59263041e3197220b04c1cda058e1d57fe91eb86ed4a50d461c06c02620c98
5
5
  SHA512:
6
- metadata.gz: 6f69fb8e97573a353809337c5aac04a16d4659f5b0284e126b10db367afb18db1fe493db4cc76a473a03895a3e4eb712986f0fb4b47c1c1ed5d926e4ff9eef21
7
- data.tar.gz: 726a432e06a848ccc328b9f9ee4857f2eea2754c48520079b2547186490da7c3e18aa6701143f57eb208b92534bfb80ce8e56ffb9a5826b0c1db22c5e8e3a8d6
6
+ metadata.gz: f1a1432398be62a3f54c4c3b198b94b6a69ac9f1524a36f25026ff53bfd5af7ec17dcb0b64c2f01f6b3886492055121f961216f5a818cd37ca2bfbf831fed4cc
7
+ data.tar.gz: eda816fa9f998da2aaf4075010af9e06bafca4b2c308609a2285e0fc202c325284e77eefa5d39ddca787f4a18f7b4ada05265955c08caa2bdd5bc14969765f90
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 0.0.4 (2025-02-08)
2
+ - dependency fix
3
+ - readme
4
+ - inspired by
5
+
1
6
  ### 0.0.3 (2025-01-21)
2
7
  - let_variable_reset
3
8
  - test coverage
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rspec-debugging (0.0.3)
4
+ rspec-debugging (0.0.4)
5
5
  rspec-expectations (>= 3)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -6,6 +6,7 @@ rspec-debugging
6
6
 
7
7
  Tools to make debugging RSpec tests easier.
8
8
 
9
+ <br />
9
10
 
10
11
  Debug broken specs
11
12
  ----
@@ -19,6 +20,12 @@ describe MySpec do
19
20
  end
20
21
  ```
21
22
 
23
+ or set an environment variable to run and debug all specs:
24
+ ```
25
+ RSPEC_DEBUGGING=true bundle exec rspec
26
+ ```
27
+
28
+ <br />
22
29
 
23
30
  Stop and explore
24
31
  ----
@@ -30,6 +37,7 @@ describe MySpec do
30
37
  end
31
38
  ```
32
39
 
40
+ <br />
33
41
 
34
42
  Got let variables?
35
43
  ----
@@ -60,21 +68,27 @@ describe RSpec::Debugging do
60
68
 
61
69
  ...add a hundred lines of legacy code and then solve for `a`. Or use tooling :)
62
70
 
71
+ <br />
72
+
73
+ ----
74
+
63
75
  ### let_variables
64
- * Returns the list of variables defined by RSpec `let`
76
+ * list of variables defined by RSpec `let`
65
77
 
66
78
 
67
79
  ### let_variable_initialized?(name)
68
- * Has the specified let variable been initialized?
80
+ * whether a specified let variable been initialized
69
81
 
70
82
 
71
83
  ### let_variable_get(name)
72
- * Returns the value of a let variable, if initialized
84
+ * the value of a let variable, if initialized
73
85
 
74
86
  ### let_variable_values(name)
75
- * Return all locations where the specified variable has been defined or redefined, and it's value at each location.
87
+ * all locations where the specified variable has been defined or redefined, and it's value at each location
76
88
 
77
89
 
90
+ <br />
91
+
78
92
  ----
79
93
  ## Contributing
80
94
 
@@ -86,3 +100,12 @@ Yes please :)
86
100
  1. Commit your changes (`git commit -am 'awesome new feature'`)
87
101
  1. Push your branch (`git push origin my-feature`)
88
102
  1. Create a Pull Request
103
+
104
+
105
+ <br />
106
+
107
+ ----
108
+ ### Inspired by
109
+
110
+ - [@alexdean](https://github.com/alexdean)
111
+ - [rspec-debug](https://github.com/ko1/rspec-debug)
@@ -1,3 +1,4 @@
1
+ require 'debug'
1
2
  require 'debug/session'
2
3
 
3
4
  module RSpec
@@ -1,5 +1,5 @@
1
1
  module RSpec
2
2
  module Debugging
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.license = "MIT"
7
7
  s.name = File.basename(__FILE__, ".gemspec")
8
8
  s.summary = s.description
9
- s.version = "0.0.3"
9
+ s.version = "0.0.4"
10
10
 
11
11
  s.required_ruby_version = ">= 3.1"
12
12
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-debugging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Pepper
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-21 00:00:00.000000000 Z
10
+ date: 2025-02-07 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rspec-expectations
@@ -67,7 +66,6 @@ dependencies:
67
66
  - !ruby/object:Gem::Version
68
67
  version: '0'
69
68
  description: Tools to improve debugging in RSpec
70
- email:
71
69
  executables: []
72
70
  extensions: []
73
71
  extra_rdoc_files: []
@@ -87,7 +85,6 @@ homepage: https://github.com/dpep/rspec-debugging
87
85
  licenses:
88
86
  - MIT
89
87
  metadata: {}
90
- post_install_message:
91
88
  rdoc_options: []
92
89
  require_paths:
93
90
  - lib
@@ -102,8 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
99
  - !ruby/object:Gem::Version
103
100
  version: '0'
104
101
  requirements: []
105
- rubygems_version: 3.5.23
106
- signing_key:
102
+ rubygems_version: 3.6.3
107
103
  specification_version: 4
108
104
  summary: Tools to improve debugging in RSpec
109
105
  test_files: []