Sha256: d535952a31c7604da0c75f21ed2b778cc1df5a11ea1439585cb93ae95896df18

Contents?: true

Size: 814 Bytes

Versions: 1

Compression:

Stored size: 814 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 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

1 entries across 1 versions & 1 rubygems

Version Path
inch-0.1.4 lib/inch/evaluation/role/constant.rb