Reputation: 28153
What's the difference between require 'cool_lib' and gem 'cool_lib'?
require 'cool_lib'
gem 'cool_lib'
Upvotes: 5
Views: 487
Reputation: 132157
gem gives you more options as to which exact gem you load: see here for plenty of details. In this example, there's no effective difference.
gem
I'd recommend using require unless you specifically need the power of gem - it seems to be what most people use.
require