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
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ task :generate_test_gem => ['engine_cart:setup'] do
system "echo '\ngem \"sqlite3\", \"< 1.7.0\"\n' >> Gemfile"
end

Bundler.unbundled_system "bundle update --quiet"
Bundler.unbundled_system "bundle update --all --quiet"
system "echo 'require \"engine_cart/rake_task\"\n' >> Rakefile"

system("bundle exec rake engine_cart:prepare")
Expand Down
2 changes: 1 addition & 1 deletion lib/engine_cart/tasks/engine_cart.rake
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ namespace :engine_cart do
end

within_test_app do
unless (system("bundle install --quiet") or system("bundle update --quiet")) and
unless (system("bundle install --quiet") or system("bundle update --all --quiet")) and
system "(bin/rails g | grep test_app) && bin/rails generate test_app" and
system "bin/rails db:migrate" and
system "bin/rails db:test:prepare"
Expand Down
Loading