Use and meaning of 'require false' in Gemfile

gem ‘rb-fchange’, :require=>false

I have this line in my gemfile. What is the meaning and use case?

It tells Bundler to install the gem, but not to require it when the call to Bundler.require is made.

To use this gem in your project you’d need to require it manually.