Sha256: 58058a90124e79f7e6bcddaae07a324dfcd908a7b3d6f2fe0f9defeb81294bee

Contents?: true

Size: 922 Bytes

Versions: 4

Compression:

Stored size: 922 Bytes

Contents

module Inch
  module Evaluation
    module Role
      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 Protected < Object::Protected
          def priority
            -2
          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

Version Path
inch-0.1.3 lib/inch/evaluation/role/constant.rb
inch-0.1.2 lib/inch/evaluation/role/constant.rb
inch-0.1.1 lib/inch/evaluation/role/constant.rb
inch-0.1.0 lib/inch/evaluation/role/constant.rb