You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require: false tells bundler to install a gem, but not require it automatically (more info]. This is good for gems that you don't always want to include. For example, we only need to require rubocop when rubocop is running (not during the runtime for the app, or even during tests). By not requiring it, we should save some boot time of our apps
The text was updated successfully, but these errors were encountered:
dkniffin
changed the title
Add require: false to lesser used gems
Add require: false to lesser used gems in our Gemfile
May 7, 2018
require: false
tells bundler to install a gem, but not require it automatically (more info]. This is good for gems that you don't always want to include. For example, we only need to require rubocop when rubocop is running (not during the runtime for the app, or even during tests). By not requiring it, we should save some boot time of our appsThe text was updated successfully, but these errors were encountered: