25
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

rubocopをbundlerでインストールするときにrequire: falseにする理由

Last updated at Posted at 2020-02-16

本記事の対象者

「rubocopを導入するときにrequire: falseにしてたけど、理由がよく分からない」

そんな方に向けてこの記事を書いています。

rubocopの導入方法

rubocopの公式ドキュメントでは、以下のコマンドを実行する

$ gem install rubocop

もしくは、Gemfileに以下を記載して、bundlerで導入してくださいと書いてあります。

$ gem 'rubocop', require: false

この記事では、後者について記載していきます。

bundlerの特徴

rubocopを導入するうえで、覚えておきたいbundlerの特徴は、
「bundlerでは、Gemfileに書いたgemをまとめて自動でrequireする仕組みになっている」ということです。

rubocopはどこで使うの?

rubocopは、ソースコードが規約に沿っているか確認するために、ターミナル等でコマンドを実行します。

結論

rubocopは、ターミナル等で使用するため、bundlerによってアプリ側に自動で読み込む必要がない。よって、require: falseにする。

参考

主に以下を参考にさせていただきました。ありがとうございます!

25
6
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?