TK.
TK.

Reputation: 28153

What's the difference between `require` and `gem`

What's the difference between require 'cool_lib' and gem 'cool_lib'?

Upvotes: 5

Views: 487

Answers (1)

Peter
Peter

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.

I'd recommend using require unless you specifically need the power of gem - it seems to be what most people use.

Upvotes: 5

Related Questions