Sha256: 4c85bfd6165396b7f73959aeff46062a4e16685f07f60bd5dc220dd0346efda4

Contents?: true

Size: 286 Bytes

Versions: 2

Compression:

Stored size: 286 Bytes

Contents

class Testing
  def pub; end
  
  private

  def priv; end
  def notpriv; end
  def notpriv2; end
  def notpriv?; end

  protected

  def prot; end

  public

  def pub2; end

  protected :notpriv, 'notpriv2', :notpriv?
  
  private name
  private *argument
  private *(method_call)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yard-0.6.1 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.6.0 spec/handlers/examples/visibility_handler_001.rb.txt