gem の選択に関する非常に優れたガイドは次のとおりです: RubyGems の探索
そして、Ryan が gem の行を数える方法を提案する方法は次のとおりです。
- ジェムレポのクローン
- cloc コマンドを使用して行数をカウントする
例:
$ git clone https://github.com/plataformatec/devise.git
$ cloc app lib
87 text files.
86 unique files.
23 files ignored.
http://cloc.sourceforge.net v 1.56 T=1.0 s (64.0 files/s, 5294.0 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
Ruby 64 762 1513 3019
-------------------------------------------------------------------------------
SUM: 64 762 1513 3019
-------------------------------------------------------------------------------
test
またはディレクトリの行数spec
をチェックして、テスト カバレッジをチェックすることもできます。