Sha256: 8d653376be80b77d6c397d243beea435ffa1c13a30445360a7bfee109c22f0da
Contents?: true
Size: 850 Bytes
Versions: 4
Compression:
Stored size: 850 Bytes
Contents
module Inch module Evaluation module Role # Roles assigned to constants module Constant class WithDoc < Object::WithDoc end class WithoutDoc < Object::WithoutDoc end class TaggedAsNodoc < Object::TaggedAsNodoc end class InRoot < Object::InRoot end class Public < Object::Public def priority -1 end end class Private < Object::Private def priority -3 end end class WithCodeExample < Object::WithCodeExample end class WithMultipleCodeExamples < Object::WithMultipleCodeExamples end class WithoutCodeExample < Object::WithoutCodeExample def suggestion nil end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems