├── .autotest ├── .gitignore ├── History.rdoc ├── Manifest.txt ├── README.rdoc ├── Rakefile ├── bin └── ha-gen ├── haddock.gemspec ├── lib └── haddock.rb └── test ├── names.txt └── test_haddock.rb /.autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/.autotest -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/.gitignore -------------------------------------------------------------------------------- /History.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/History.rdoc -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/ha-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/bin/ha-gen -------------------------------------------------------------------------------- /haddock.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/haddock.gemspec -------------------------------------------------------------------------------- /lib/haddock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/lib/haddock.rb -------------------------------------------------------------------------------- /test/names.txt: -------------------------------------------------------------------------------- 1 | Mary 2 | sturgeon 3 | -------------------------------------------------------------------------------- /test/test_haddock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephencelis/haddock/HEAD/test/test_haddock.rb --------------------------------------------------------------------------------