rspec-watcher 0.3.1 → 0.3.3
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
- data/README.md +7 -1
- data/lib/rspec_watcher/default_configuration.rb +7 -3
- data/lib/rspec_watcher/tasks/watch.rake +6 -2
- data/lib/rspec_watcher/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f75967ea122f2ecadd65bc5cc7e86e1aa6b1effba0c55d1ec1ffd81e66adaae1
|
4
|
+
data.tar.gz: '0887e7947f6014276af5c8f16459fea9184a5191867f0482e957c5492abe4d35'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46a43e44c700301905e53f53d983917a0a6d48a60a0d1c76f6d83e2134606365551729c17042e8200a0b78c18d01012872346e3f6d233e4ae98ade5ff44bcde9
|
7
|
+
data.tar.gz: 6ce0d08158d05ecd5ea266fed43b24831361ed67b3659838fc83fbccfab30544fc23905123130f6ae4bc0900a4044c1119b9bdaa784724427d525c0defce3e47
|
data/README.md
CHANGED
@@ -22,6 +22,12 @@ Then run `bundle install`
|
|
22
22
|
|
23
23
|
Disable caching classes in `config/environments/test.rb` when the watcher is running:
|
24
24
|
|
25
|
+
```ruby
|
26
|
+
config.enable_reloading = ENV['RSPEC_WATCHER'] == 'true'
|
27
|
+
```
|
28
|
+
|
29
|
+
For older versions of Rails (< 7.1), instead use:
|
30
|
+
|
25
31
|
```ruby
|
26
32
|
config.cache_classes = ENV['RSPEC_WATCHER'].nil?
|
27
33
|
```
|
@@ -37,7 +43,7 @@ if ENV['RSPEC_WATCHER']
|
|
37
43
|
modified + added
|
38
44
|
end
|
39
45
|
|
40
|
-
watch 'spec', ignore: /_spec\.rb\z/
|
46
|
+
watch 'spec', ignore: /_spec\.rb\z|examples.txt\z/
|
41
47
|
|
42
48
|
watch 'app', only: /\.rb\z/, ignore: %r{controllers/} do |modified, added, removed|
|
43
49
|
(modified + added + removed).map do |path|
|
@@ -5,17 +5,21 @@ RSpecWatcher.configure do
|
|
5
5
|
modified + added
|
6
6
|
end
|
7
7
|
|
8
|
-
watch 'spec', ignore: /_spec\.rb\z/
|
8
|
+
watch 'spec', ignore: /_spec\.rb\z|examples.txt\z/
|
9
9
|
|
10
10
|
watch 'app', only: /\.rb\z/, ignore: %r{controllers/} do |modified, added, removed|
|
11
11
|
(modified + added + removed).map do |path|
|
12
|
-
|
12
|
+
file_path = Pathname.new(path).relative_path_from(Rails.root.join('app'))
|
13
|
+
spec_path = file_path.sub(/.rb\z/, '_spec.rb')
|
14
|
+
Rails.root.join('spec', spec_path).to_s
|
13
15
|
end
|
14
16
|
end
|
15
17
|
|
16
18
|
watch 'app/controllers', only: /\.rb\z/ do |modified, added, removed|
|
17
19
|
(modified + added + removed).map do |path|
|
18
|
-
|
20
|
+
file_path = Pathname.new(path).relative_path_from(Rails.root.join('app', 'controllers'))
|
21
|
+
spec_path = file_path.sub(/_controller.rb\z/, '_spec.rb')
|
22
|
+
Rails.root.join('spec', 'requests', spec_path).to_s
|
19
23
|
end
|
20
24
|
end
|
21
25
|
|
@@ -3,10 +3,14 @@
|
|
3
3
|
namespace :rspec_watcher do
|
4
4
|
desc 'Start the watcher'
|
5
5
|
task :watch do
|
6
|
-
abort('Not running in test environment') if defined?(Rails) && !Rails.env.test?
|
7
|
-
|
8
6
|
ENV['RSPEC_WATCHER'] = 'true'
|
9
7
|
|
8
|
+
if defined?(Rails)
|
9
|
+
abort('Not running in test environment') unless Rails.env.test?
|
10
|
+
|
11
|
+
Rake::Task['environment'].invoke
|
12
|
+
end
|
13
|
+
|
10
14
|
if RSpecWatcher.rules.empty?
|
11
15
|
require_relative '../default_configuration'
|
12
16
|
puts 'Using default configuration'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-watcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matous Vokal
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-core
|
@@ -62,7 +62,7 @@ licenses:
|
|
62
62
|
metadata:
|
63
63
|
homepage_uri: https://github.com/Sorc96/rspec-watcher
|
64
64
|
source_code_uri: https://github.com/Sorc96/rspec-watcher
|
65
|
-
post_install_message:
|
65
|
+
post_install_message:
|
66
66
|
rdoc_options: []
|
67
67
|
require_paths:
|
68
68
|
- lib
|
@@ -77,8 +77,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
77
|
- !ruby/object:Gem::Version
|
78
78
|
version: '0'
|
79
79
|
requirements: []
|
80
|
-
rubygems_version: 3.
|
81
|
-
signing_key:
|
80
|
+
rubygems_version: 3.4.19
|
81
|
+
signing_key:
|
82
82
|
specification_version: 4
|
83
83
|
summary: Instant feedback for awesome TDD experience with RSpec.
|
84
84
|
test_files: []
|