gemfile: don't require i18n-tasks by default
i18n-tasks is only used as a standalone command-line tool. It doesn't need to be included in the app. It also prevent a parser warning from appearing when running any rails command: > warning: parser/current is loading parser/ruby27, which recognizes > warning: 2.7.2-compliant syntax, but you are running 2.7.1. > warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri. Now this (legitimate) warning only appears when running the i18n-tasks command.
This commit is contained in:
parent
b0735aafe0
commit
71c4ce67b2
1 changed files with 1 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -39,7 +39,7 @@ gem 'groupdate'
|
|||
gem 'haml-rails'
|
||||
gem 'hashie'
|
||||
gem 'http_accept_language'
|
||||
gem 'i18n-tasks'
|
||||
gem 'i18n-tasks', require: false
|
||||
gem 'iban-tools'
|
||||
gem 'image_processing'
|
||||
gem 'json_schemer'
|
||||
|
|
Loading…
Add table
Reference in a new issue