lib/inch/evaluation/role/object.rb in inch-0.3.1.rc3 vs lib/inch/evaluation/role/object.rb in inch-0.3.1.rc4

- old
+ new

@@ -39,19 +39,19 @@ -7 end end # Role assigned to objects explicitly or implicitly tagged to be part - # of an API. If the API is 'private' TaggedAsPrivateAPI is assigned + # of an API. If the API is 'private'/'internal' TaggedAsInternalAPI is assigned # instead. class TaggedAsAPI < Base applicable_if :api_tag? end # Role assigned to objects explicitly or implicitly tagged to be part # of a private API. - class TaggedAsPrivateAPI < Base - applicable_if :private_api_tag? + class TaggedAsInternalAPI < Base + applicable_if :tagged_as_internal_api? def priority -5 end end