rspec-interactive 0.9.13 → 0.9.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/rspec-interactive/version.rb +1 -1
- data/lib/rspec-interactive.rb +9 -3
- data/{runner → scripts}/rspec-interactive-run +1 -1
- metadata +3 -6
- data/runner/Gemfile +0 -5
- data/runner/Gemfile.lock +0 -14
- data/runner/README.md +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5f3f89cd6ae43636a3fac68501c3dd0b9dccae03f85ce06a911ea5eb71630b2
|
4
|
+
data.tar.gz: 7fceb3943d24a280f9bbd361ec3844cbd70f6205fd217f68fb94af072b4bd2c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fdd623bcb524967e1153b690a94c7a8b3132d158c3bfbdc166151a0400981fe0f6b86be572354e32061a0b1273e903c822b4d5f0caa80eaae241240dfbe1d08
|
7
|
+
data.tar.gz: 5e02491b2d4d5f86d54d02f877c488d67afa5de5636796c14a8eec3cf528ec01c0705229d17f73eb91892df691ffd0710dc49ecbec8c4dd8d90d4a2c03fb68e6
|
data/Gemfile.lock
CHANGED
data/lib/rspec-interactive.rb
CHANGED
@@ -56,6 +56,9 @@ module RSpec
|
|
56
56
|
@config_cache = RSpec::Interactive::ConfigCache.new
|
57
57
|
|
58
58
|
@configuration = Configuration.new
|
59
|
+
if !config_file && File.exist?('spec/rspec_interactive.rb')
|
60
|
+
config_file = 'spec/rspec_interactive.rb'
|
61
|
+
end
|
59
62
|
load config_file if config_file
|
60
63
|
|
61
64
|
check_rails
|
@@ -276,11 +279,14 @@ module RSpec
|
|
276
279
|
end
|
277
280
|
|
278
281
|
def self.rubo_cop(args)
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
+
begin
|
283
|
+
require 'rubocop'
|
284
|
+
rescue LoadError
|
282
285
|
@error_stream.puts "fatal: RuboCop not found. Is the gem installed in this project?"
|
286
|
+
return
|
283
287
|
end
|
288
|
+
|
289
|
+
RuboCop::CLI.new.run args
|
284
290
|
end
|
285
291
|
|
286
292
|
def self.eval(line, options, &block)
|
@@ -9,7 +9,7 @@ require 'socket'
|
|
9
9
|
port: 5678
|
10
10
|
}
|
11
11
|
|
12
|
-
|
12
|
+
OptionParser.new do |opts|
|
13
13
|
opts.banner = "Executes RSpec by connecting to a running RSpec Interactive shell.\n\n"\
|
14
14
|
"Usage: bundle exec rspec-interactive-run [--host <host>] [--port <port>] [rspec-args]"
|
15
15
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-interactive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Dower
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-core
|
@@ -94,11 +94,8 @@ files:
|
|
94
94
|
- lib/rspec-interactive/version.rb
|
95
95
|
- lib/teamcity/spec/runner/formatter/teamcity/formatter.rb
|
96
96
|
- rspec-interactive.gemspec
|
97
|
-
- runner/Gemfile
|
98
|
-
- runner/Gemfile.lock
|
99
|
-
- runner/README.md
|
100
|
-
- runner/rspec-interactive-run
|
101
97
|
- scripts/release.sh
|
98
|
+
- scripts/rspec-interactive-run
|
102
99
|
- scripts/run-with-local-dep.sh
|
103
100
|
- tests/debugged_spec_test.rb
|
104
101
|
- tests/eof_test.rb
|
data/runner/Gemfile
DELETED
data/runner/Gemfile.lock
DELETED
data/runner/README.md
DELETED