Sha256: 1f8c737722b710ccd147b8fdef7d95260395b1801db6c1c5de5041f51673d18c

Contents?: true

Size: 654 Bytes

Versions: 4

Compression:

Stored size: 654 Bytes

Contents

module Foo
  # The problem here is that the @param tag is not given the name of the
  # parameter it documents.
  #
  # @param [Encoding]
  # @return [String]
  def method_with_wrong_param_tag(e)

  end

  # The problem here is that the @param tag does not describe the parameter
  #
  # @param [Encoding] e
  # @return [String]
  def method_with_empty_param_tag_text(e)

  end
end

module YardError
  if defined? ::Deprecate
    Deprecate = ::Deprecate
  elsif defined? Gem::Deprecate
    Deprecate = Gem::Deprecate
  else
    class Deprecate; end
  end

  unless Deprecate.respond_to?(:skip_during)
    def Deprecate.skip_during; yield; end
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
inch-0.3.0 test/fixtures/simple/lib/broken.rb
inch-0.3.0.rc3 test/fixtures/simple/lib/broken.rb
inch-0.3.0.rc2 test/fixtures/simple/lib/broken.rb
inch-0.3.0.rc1 test/fixtures/simple/lib/broken.rb