├── .gitignore ├── Gemfile ├── HISTORY.md ├── LICENSE ├── README.md ├── Rakefile ├── bin └── tomdoc ├── lib ├── tomdoc.rb └── tomdoc │ ├── arg.rb │ ├── cli.rb │ ├── generator.rb │ ├── method.rb │ ├── reporters │ ├── base.rb │ ├── console.rb │ └── html.rb │ ├── scope.rb │ ├── source_parser.rb │ ├── tomdoc.rb │ └── version.rb ├── man ├── tomdoc.5 ├── tomdoc.5.html └── tomdoc.5.ronn ├── test ├── console_reporter_test.rb ├── fixtures │ ├── chimney.rb │ ├── multiplex.rb │ └── simple.rb ├── generator_test.rb ├── helper.rb ├── html_reporter_test.rb ├── source_parser_test.rb └── tomdoc_parser_test.rb ├── tomdoc.gemspec ├── tomdoc.md └── try └── example.rb /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | pkg 3 | Gemfile.lock 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/tomdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/bin/tomdoc -------------------------------------------------------------------------------- /lib/tomdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc.rb -------------------------------------------------------------------------------- /lib/tomdoc/arg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/arg.rb -------------------------------------------------------------------------------- /lib/tomdoc/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/cli.rb -------------------------------------------------------------------------------- /lib/tomdoc/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/generator.rb -------------------------------------------------------------------------------- /lib/tomdoc/method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/method.rb -------------------------------------------------------------------------------- /lib/tomdoc/reporters/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/reporters/base.rb -------------------------------------------------------------------------------- /lib/tomdoc/reporters/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/reporters/console.rb -------------------------------------------------------------------------------- /lib/tomdoc/reporters/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/reporters/html.rb -------------------------------------------------------------------------------- /lib/tomdoc/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/scope.rb -------------------------------------------------------------------------------- /lib/tomdoc/source_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/source_parser.rb -------------------------------------------------------------------------------- /lib/tomdoc/tomdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/lib/tomdoc/tomdoc.rb -------------------------------------------------------------------------------- /lib/tomdoc/version.rb: -------------------------------------------------------------------------------- 1 | module TomDoc 2 | VERSION = '0.2.5' 3 | end 4 | -------------------------------------------------------------------------------- /man/tomdoc.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/man/tomdoc.5 -------------------------------------------------------------------------------- /man/tomdoc.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/man/tomdoc.5.html -------------------------------------------------------------------------------- /man/tomdoc.5.ronn: -------------------------------------------------------------------------------- 1 | ../tomdoc.md -------------------------------------------------------------------------------- /test/console_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/console_reporter_test.rb -------------------------------------------------------------------------------- /test/fixtures/chimney.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/fixtures/chimney.rb -------------------------------------------------------------------------------- /test/fixtures/multiplex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/fixtures/multiplex.rb -------------------------------------------------------------------------------- /test/fixtures/simple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/fixtures/simple.rb -------------------------------------------------------------------------------- /test/generator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/generator_test.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/html_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/html_reporter_test.rb -------------------------------------------------------------------------------- /test/source_parser_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/source_parser_test.rb -------------------------------------------------------------------------------- /test/tomdoc_parser_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/test/tomdoc_parser_test.rb -------------------------------------------------------------------------------- /tomdoc.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/tomdoc.gemspec -------------------------------------------------------------------------------- /tomdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/tomdoc.md -------------------------------------------------------------------------------- /try/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/tomdoc/HEAD/try/example.rb --------------------------------------------------------------------------------