rspec-interactive 0.9.14 → 0.9.15
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/Gemfile.lock +2 -1
- data/lib/rspec-interactive/version.rb +1 -1
- data/lib/rspec-interactive.rb +3 -0
- metadata +3 -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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rspec-interactive (0.9.
|
|
4
|
+
rspec-interactive (0.9.14)
|
|
5
5
|
pry
|
|
6
6
|
rspec-core
|
|
7
7
|
rspec-teamcity (= 1.0.0)
|
|
@@ -11,6 +11,7 @@ GEM
|
|
|
11
11
|
specs:
|
|
12
12
|
coderay (1.1.3)
|
|
13
13
|
diff-lcs (1.4.4)
|
|
14
|
+
ffi (1.15.5)
|
|
14
15
|
ffi (1.15.5-java)
|
|
15
16
|
method_source (1.0.0)
|
|
16
17
|
pry (0.14.1)
|
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
|
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-
|
|
11
|
+
date: 2022-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec-core
|
|
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
132
|
version: '0'
|
|
133
133
|
requirements: []
|
|
134
|
-
rubygems_version: 3.
|
|
134
|
+
rubygems_version: 3.2.3
|
|
135
135
|
signing_key:
|
|
136
136
|
specification_version: 4
|
|
137
137
|
summary: An interactive console for running specs.
|