rails stats の項目の意味

項目 意味
Lines 行数(コメント含む)
LOC Line Of Code の略。コメントをのぞいた行数。
Classes クラス数。
Methods メソッド数。
M/C Method Per Class の略。1クラスに何メソッドあるか。
LOC/M LOC Per Method の略。1メソッドに何行(コメント除く)あるか。

rails アプリの統計情報を一発で取れる rake stats を試した - clayfishの日記

ActiveModel で draper を使う

ActiveModel や PORO で draper を使う場合。

class FooModel
	...
	include Draper::Decoratable
	...
end

Models get their decorate method from the Draper::Decoratable module, which is included in ActiveRecord::Base and Mongoid::Document by default. If you’re using another ORM, or want to decorate plain old Ruby objects, you can include this module manually.

drapergem/draper: Decorators/View-Models for Rails Applications