Concept Flow - Bundle exec for isolated execution
Start Ruby script
Run 'bundle exec'
Load Gemfile.lock
Set gem versions from Gemfile.lock
Execute script with isolated gems
Script runs using specified gems
End execution
This flow shows how 'bundle exec' runs a Ruby script using the exact gems and versions specified in the Gemfile.lock, isolating from system gems.