Sha256: 352d87535302b273ec3ceb00af0fddb43047d1a1da7134dfe09b18309a019d59

Contents?: true

Size: 411 Bytes

Versions: 29

Compression:

Stored size: 411 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)

  def Foo; end
  private :Foo

  private def decpriv; end

  private

  class Bar; end
  module Baz; end

  private :not_exist!
end

Version data entries

29 entries across 26 versions & 4 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.1/spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.7 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.6 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.5 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.4 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.3 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.2 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.1 spec/handlers/examples/visibility_handler_001.rb.txt
yard-0.9.0 spec/handlers/examples/visibility_handler_001.rb.txt