rspec-interactive 0.9.13 → 0.9.14
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 -2
- data/lib/rspec-interactive/version.rb +1 -1
- data/lib/rspec-interactive.rb +6 -3
- data/{runner → scripts}/rspec-interactive-run +1 -1
- metadata +4 -7
- 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: 5fa7f485edd73e508aae2ef78bc0a1e6732ff68d21426167286593a403d62e8d
|
4
|
+
data.tar.gz: ce16787bd05a0fb8f58ee345b5364e3b7ecd2ae4c6facff80de4c79da1529e28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67d4cf6b38665652da822cf984a147b8e6446a508436e89adf40606cdaa661060d4b089541b43b4524e4549265cb4e6a72e8c9355b6a376c6ba41de6f3a59421
|
7
|
+
data.tar.gz: 98d9746462b2de2bdde2c0041d52401f333032760aaee6355a387a6753533d0fd0bf2363574f71b6855d502c9c2c06cb3e99ae78c6fca077de641ed088f3234b
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rspec-interactive (0.9.
|
4
|
+
rspec-interactive (0.9.13)
|
5
5
|
pry
|
6
6
|
rspec-core
|
7
7
|
rspec-teamcity (= 1.0.0)
|
@@ -11,7 +11,6 @@ GEM
|
|
11
11
|
specs:
|
12
12
|
coderay (1.1.3)
|
13
13
|
diff-lcs (1.4.4)
|
14
|
-
ffi (1.15.5)
|
15
14
|
ffi (1.15.5-java)
|
16
15
|
method_source (1.0.0)
|
17
16
|
pry (0.14.1)
|
data/lib/rspec-interactive.rb
CHANGED
@@ -276,11 +276,14 @@ module RSpec
|
|
276
276
|
end
|
277
277
|
|
278
278
|
def self.rubo_cop(args)
|
279
|
-
|
280
|
-
|
281
|
-
|
279
|
+
begin
|
280
|
+
require 'rubocop'
|
281
|
+
rescue LoadError
|
282
282
|
@error_stream.puts "fatal: RuboCop not found. Is the gem installed in this project?"
|
283
|
+
return
|
283
284
|
end
|
285
|
+
|
286
|
+
RuboCop::CLI.new.run args
|
284
287
|
end
|
285
288
|
|
286
289
|
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.14
|
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-01 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
|
@@ -134,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
131
|
- !ruby/object:Gem::Version
|
135
132
|
version: '0'
|
136
133
|
requirements: []
|
137
|
-
rubygems_version: 3.
|
134
|
+
rubygems_version: 3.3.3
|
138
135
|
signing_key:
|
139
136
|
specification_version: 4
|
140
137
|
summary: An interactive console for running specs.
|
data/runner/Gemfile
DELETED
data/runner/Gemfile.lock
DELETED
data/runner/README.md
DELETED