Skip to content
Open
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
4 changes: 1 addition & 3 deletions script/run_build
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ fold "specs" run_specs_and_record_done

fold "acceptance" bin/rake acceptance --trace

if is_ruby_3_2_plus; then
fold "snippets" script/run_snippets.sh
fi
fold "snippets" script/run_snippets.sh

if documentation_enforced; then
fold "doc check" check_documentation_coverage
Expand Down
4 changes: 4 additions & 0 deletions snippets/avoid_fixture_name_collision.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
eval_gemfile 'Gemfile-rails-dependencies'
end

if RUBY_VERSION.to_f < 3.2
gem "securerandom", ">= 0.3"
end

gem "rspec-rails", path: "../"
end

Expand Down