├── .gitignore ├── Dockerfile ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── doc_to_dash ├── default_icon.png ├── doc_to_dash.gemspec ├── lib ├── doc_to_dash.rb └── doc_to_dash │ ├── cli.rb │ ├── parsers │ ├── rdoc_darkfish_parser.rb │ └── yard_parser.rb │ ├── trollop.rb │ └── version.rb ├── rakelib ├── docset.rake ├── rdoc.rake ├── rspec.rake ├── settings.rake ├── settings.rb ├── version.rake ├── version.rb └── yard.rake ├── release.sh └── spec ├── doc_to_dash_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/doc_to_dash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'doc_to_dash' 3 | 4 | DocToDash::CLI.run -------------------------------------------------------------------------------- /default_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/default_icon.png -------------------------------------------------------------------------------- /doc_to_dash.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/doc_to_dash.gemspec -------------------------------------------------------------------------------- /lib/doc_to_dash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/lib/doc_to_dash.rb -------------------------------------------------------------------------------- /lib/doc_to_dash/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/lib/doc_to_dash/cli.rb -------------------------------------------------------------------------------- /lib/doc_to_dash/parsers/rdoc_darkfish_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/lib/doc_to_dash/parsers/rdoc_darkfish_parser.rb -------------------------------------------------------------------------------- /lib/doc_to_dash/parsers/yard_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/lib/doc_to_dash/parsers/yard_parser.rb -------------------------------------------------------------------------------- /lib/doc_to_dash/trollop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/lib/doc_to_dash/trollop.rb -------------------------------------------------------------------------------- /lib/doc_to_dash/version.rb: -------------------------------------------------------------------------------- 1 | module DocToDash 2 | VERSION = "0.0.10" 3 | end 4 | -------------------------------------------------------------------------------- /rakelib/docset.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/docset.rake -------------------------------------------------------------------------------- /rakelib/rdoc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/rdoc.rake -------------------------------------------------------------------------------- /rakelib/rspec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/rspec.rake -------------------------------------------------------------------------------- /rakelib/settings.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/settings.rake -------------------------------------------------------------------------------- /rakelib/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/settings.rb -------------------------------------------------------------------------------- /rakelib/version.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/version.rake -------------------------------------------------------------------------------- /rakelib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/version.rb -------------------------------------------------------------------------------- /rakelib/yard.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/rakelib/yard.rake -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/release.sh -------------------------------------------------------------------------------- /spec/doc_to_dash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/spec/doc_to_dash_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minglecm/doc_to_dash/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------