What is the difference between rails s and bundle exec rails s? People seem to say that bundle exec rails s is better, but why? Meanwh
rails s
bundle exec rails s
bundle exec ensures you're triggering commands from gems in your Gemfile.
bundle exec
may not be that useful for rails command but is definitely needed for rake for instance.
rails
rake