lib/inch/code_object/proxy/base.rb in inch-0.3.1.rc4 vs lib/inch/code_object/proxy/base.rb in inch-0.3.1.rc5

- old
+ new

@@ -161,13 +161,16 @@ self[:private?] end # @return [Boolean] # +true+ if the object or its parent is tagged as @private - def private_tag? - self[:private_tag?] + def tagged_as_private? + self[:tagged_as_private?] end + # @return [Boolean] + # +true+ if the object or its parent is tagged as part of an + # internal api def tagged_as_internal_api? self[:tagged_as_internal_api?] end def protected?