Sha256: 04c5fd96b6ebaa54fed842aa746331ec4c68b89eae93e436594717c7ff188605
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
module Inch module Language module Ruby module Evaluation module Role # Roles assigned to class variables module ClassVariable class WithDoc < Object::WithDoc applicable_if :has_doc? end class WithoutDoc < Object::WithoutDoc applicable_unless :has_doc? end class TaggedAsNodoc < Object::TaggedAsNodoc applicable_if :nodoc? end class InRoot < Object::InRoot applicable_if :in_root? end class Public < Object::Public applicable_if :public? priority(-1) end class Private < Object::Private applicable_if :private? priority(-3) end class WithCodeExample < Object::WithCodeExample applicable_if do |o| o.has_code_example? && !o.has_multiple_code_examples? end end class WithMultipleCodeExamples < Object::WithMultipleCodeExamples applicable_if :has_multiple_code_examples? end class WithoutCodeExample < Object::WithoutCodeExample applicable_unless :has_code_example? def suggestion nil end end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems