Skip to content

Instantly share code, notes, and snippets.

@kkrishan
kkrishan / rdoc-example.rb
Created January 19, 2017 05:50 — forked from nicholasjhenry/rdoc-example.rb
RDoc Example
# * Style guide based on Rails documention
module Namespace #:nodoc: don't document this
# Generic Namespace exception class
class NamespaceError < StandardError
end
# Raised when...
class SpecificError < NamespaceError
end