Sha256: a80a18e0a23c59c1db30bdb48412193dcb85eb67c02ac599366557eed3fc42ed
Contents?: true
Size: 366 Bytes
Versions: 32
Compression:
Stored size: 366 Bytes
Contents
# frozen_string_literal: true class ProtectedMethod def call_protected protected_method end def to_s 'Protected Method fixture' end class << self def call_protected protected_method end protected def protected_method 'self.protected' end end protected def protected_method 'protected' end end
Version data entries
32 entries across 32 versions & 1 rubygems