test/fixtures/simple/lib/foo.rb in inch-0.1.4 vs test/fixtures/simple/lib/foo.rb in inch-0.2.0
- old
+ new
@@ -175,46 +175,9 @@
class Baz < Bar
def method_with_missing_param_doc(param1, param2, param3)
end
end
-
- class Qux # :nodoc:
- def method_with_implicit_nodoc
- end
-
- DOCCED_VALUE = 42 # :doc:
-
- class Quux
- def method_without_nodoc
- end
-
- PUBLIC_VALUE = :foo
- PRIVATE_VALUE = :bar # :nodoc:
-
- # @private
- def method_with_private_tag
- end
-
- def method_with_explicit_nodoc # :nodoc:
- end
- end
- end
-
- class HiddenClass #:nodoc: all
- def some_value
- end
-
- class EvenMoreHiddenClass
- def method_with_implicit_nodoc
- end
-
- class SuddenlyVisibleClass # :doc:
- def method_with_implicit_doc
- end
- end
- end
- end
end
def top
end