ruby on rails - Bundler: What does :require => false in a Gemfile mean? -


the line one:

gem 'whenever', :require => false 

does means gem needs installed or not required?

this means install gem, not call require when start bundler. need manually call

require "whenever" 

if want use library.

if do

gem "whenever", :require=>"whereever" 

then bundler download gem named whenever, call

require "whereever" 

this used if name of library require different name of gem.


Comments

Popular posts from this blog

sql server - python to mssql encoding problem -

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -