Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fail on missing snapshots #57

Merged
merged 3 commits into from
Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ group :development do
gem "standard", require: false
gem "yard", require: false
gem "gem-release", require: false
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
end
40 changes: 23 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: .
specs:
Expand All @@ -12,19 +20,19 @@ GEM
coderay (1.1.3)
diff-lcs (1.5.0)
gem-release (2.2.2)
json (2.6.2)
language_server-protocol (3.17.0.1)
json (2.6.3)
language_server-protocol (3.17.0.2)
method_source (1.0.0)
parallel (1.22.1)
parser (3.1.2.1)
parser (3.1.3.0)
ast (~> 2.4.1)
prettier_print (1.1.0)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.6.0)
regexp_parser (2.6.1)
rexml (3.2.5)
rspec (3.12.0)
rspec-core (~> 3.12.0)
Expand All @@ -38,38 +46,36 @@ GEM
rspec-mocks (3.12.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.12.0)
rubocop (1.35.1)
rubocop (1.39.0)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.1.2.1)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.20.1, < 2.0)
rubocop-ast (>= 1.23.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.23.0)
rubocop-ast (1.24.0)
parser (>= 3.1.1.0)
rubocop-performance (1.14.3)
rubocop-performance (1.15.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
rubocop-rspec (2.14.2)
rubocop-rspec (2.15.0)
rubocop (~> 1.33)
ruby-lsp (0.3.6)
language_server-protocol (~> 3.17.0)
sorbet-runtime
syntax_tree (>= 4.0.2, < 5.0.0)
ruby-progressbar (1.11.0)
sorbet-runtime (0.5.10564)
standard (1.16.1)
rubocop (= 1.35.1)
rubocop-performance (= 1.14.3)
sorbet-runtime (0.5.10577)
standard (1.19.1)
language_server-protocol (~> 3.17.0.2)
rubocop (= 1.39.0)
rubocop-performance (= 1.15.1)
syntax_tree (4.3.0)
prettier_print (>= 1.0.2)
unicode-display_width (2.3.0)
Expand All @@ -88,7 +94,7 @@ DEPENDENCIES
rake (~> 13.0)
rspec (~> 3.12)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!
rubocop
rubocop-performance
rubocop-rake
Expand Down
3 changes: 1 addition & 2 deletions bin/update_gemfiles.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

GEMFILES.map do |gemfile|
Thread.new do
ENV['BUNDLE_GEMFILE'] = gemfile
puts `bundle install`
system({"BUNDLE_GEMFILE" => gemfile}, "bundle update")
end
end.map(&:join)
1 change: 1 addition & 0 deletions gemfiles/rspec-3.10.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.10", "< 3.11"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.10.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.10.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.10.3)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.10, < 3.11)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
1 change: 1 addition & 0 deletions gemfiles/rspec-3.11.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.11", "< 3.12"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.11.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.11.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.11.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.11.1)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.11, < 3.12)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
1 change: 1 addition & 0 deletions gemfiles/rspec-3.12.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.12", "< 3.13"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.12.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.12.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.12.0)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.12, < 3.13)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
1 change: 1 addition & 0 deletions gemfiles/rspec-3.5.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.5", "< 3.6"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.5.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.5.0)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.5, < 3.6)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
1 change: 1 addition & 0 deletions gemfiles/rspec-3.6.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.6", "< 3.7"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.6.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.6.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.6.0)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.6, < 3.7)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
1 change: 1 addition & 0 deletions gemfiles/rspec-3.7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.7", "< 3.8"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.7.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.7.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.7.1)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.7, < 3.8)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
1 change: 1 addition & 0 deletions gemfiles/rspec-3.8.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.8", "< 3.9"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.8.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.8.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.8.3)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.8, < 3.9)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
1 change: 1 addition & 0 deletions gemfiles/rspec-3.9.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gemspec(path: "..")

# and the specific patch version of rspec
gem "rspec", "~> 3.9", "< 3.10"
gem "rspec-snapshot", github: "rwx-research/rspec-snapshot"
13 changes: 9 additions & 4 deletions gemfiles/rspec-3.9.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/rwx-research/rspec-snapshot.git
revision: 77b3098b46190a291b32b52686d07c96cced18d5
specs:
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)

PATH
remote: ..
specs:
Expand Down Expand Up @@ -26,9 +34,6 @@ GEM
rspec-mocks (3.9.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-snapshot (2.0.1)
awesome_print (> 1.0.0)
rspec (> 3.0.0)
rspec-support (3.9.4)

PLATFORMS
Expand All @@ -40,7 +45,7 @@ DEPENDENCIES
pry (~> 0.14.1)
rspec (~> 3.9, < 3.10)
rspec-abq!
rspec-snapshot (~> 2.0.1)
rspec-snapshot!

BUNDLED WITH
2.3.7
Loading