├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── rails.png │ │ └── spinner.gif │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap.js │ │ ├── bootstrap.js.coffee │ │ ├── bootstrap.min.js │ │ ├── coffee_script_utilities.js.coffee │ │ ├── global.js │ │ ├── preview_link_builder.js.coffee │ │ └── tab_navigation.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.min.css │ │ └── screen.scss ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── doc_methods_controller.rb │ ├── issue_assignments_controller.rb │ ├── pages_controller.rb │ ├── repo_based_controller.rb │ ├── repo_subscriptions_controller.rb │ ├── repos_controller.rb │ ├── users │ │ ├── after_signup_controller.rb │ │ └── omniauth_callbacks_controller.rb │ └── users_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ ├── .keep │ └── user_mailer.rb ├── models │ ├── .keep │ ├── doc_assignment.rb │ ├── doc_class.rb │ ├── doc_comment.rb │ ├── doc_mailer_maker.rb │ ├── doc_method.rb │ ├── github_fetcher.rb │ ├── github_url_from_base_path_line.rb │ ├── repo.rb │ ├── repo_subscription.rb │ └── user.rb └── views │ ├── doc_methods │ └── show.html.erb │ ├── layouts │ ├── _footer.html.erb │ ├── _head.html.erb │ ├── application.html.erb │ └── home.html.erb │ ├── pages │ ├── _sign_in.erb │ ├── index.html.erb │ └── show │ │ └── how.html.erb │ ├── repo_subscriptions │ ├── _list.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── repos │ ├── _repo.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── shared │ ├── _add_repos_list.html.erb │ └── _repos.html.erb │ ├── subscribers │ ├── _avatars.html.erb │ └── show.html.erb │ ├── user_mailer │ ├── daily_docs.md.erb │ └── spam.md.erb │ └── users │ ├── _form.html.erb │ ├── after_signup │ └── set_privacy.html.erb │ ├── edit.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── token_delete.html.erb ├── bin ├── bundle ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── git_hub_bub.rb │ ├── inflections.rb │ ├── mail.rb │ ├── mime_types.rb │ ├── queue.rb │ ├── rack_timeout.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb └── routes.rb ├── db ├── migrate │ ├── 20130520180937_create_doc_classes.rb │ ├── 20130520181117_create_doc_methods.rb │ ├── 20130520181224_create_doc_comments.rb │ ├── 20130527192409_add_counter_to_methods_classes.rb │ ├── 20130615025655_create_repos.rb │ ├── 20130628140340_repo_subscriptions.rb │ ├── 20130720231123_add_devise_to_users.rb │ ├── 20130721164421_add_excluded_to_repo.rb │ ├── 20130721185642_add_line_to_doc_class.rb │ ├── 20130723011912_add_github_to_users.rb │ ├── 20130723024046_create_doc_assignments.rb │ ├── 20131126030525_add_avatar_url_to_users.rb │ ├── 20131201182942_add_write_read_to_repo_subscriptions.rb │ ├── 20131212023909_add_path_to_classes_methods.rb │ ├── 20140429011012_add_skip_write_to_doc_methods.rb │ ├── 20140507134638_update_repo_subscription_multiple_read_write.rb │ ├── 20140524105909_add_active_to_doc_methods.rb │ ├── 20141202022842_add_skip_read_to_doc_methods.rb │ └── 20151123190940_add_commit_sha_to_repo.rb ├── schema.rb └── seeds.rb ├── lib ├── .DS_Store ├── assets │ └── .keep ├── docs_doctor.rb ├── docs_doctor │ ├── doc_obj.rb │ ├── loader.rb │ ├── loader │ │ └── ruby.rb │ ├── parser.rb │ ├── parsers │ │ └── ruby │ │ │ ├── require 'atomic' │ │ │ └── yard.rb │ ├── runner.rb │ └── task.rb └── tasks │ ├── .keep │ └── schedule.rake ├── log └── .keep ├── public ├── .DS_Store ├── 404.html ├── 422.html ├── 500.html ├── assets │ ├── application-1827e6e06bf231568bff3d2ffbf66c06.css │ ├── application-1827e6e06bf231568bff3d2ffbf66c06.css.gz │ ├── application-7c72508673d6a380c98de4fd3b423ebb.js │ ├── application-7c72508673d6a380c98de4fd3b423ebb.js.gz │ ├── glyphicons-halflings-8115abe5f2ac0bac7ff7ce2e61a59ae1.png │ ├── glyphicons-halflings-white-d76e09abbb60b19b137a943df4627474.png │ ├── maildown │ │ ├── application-3e0cccbb54e2038718c2b538a370d24f.css │ │ ├── application-3e0cccbb54e2038718c2b538a370d24f.css.gz │ │ ├── application-3e0cccbb54e2038718c2b538a370d24f.js │ │ └── application-3e0cccbb54e2038718c2b538a370d24f.js.gz │ ├── manifest-e505492b4375e129623e1bcc5d41dddb.json │ ├── rails-c00ed3a99bcbaa426c2b8250104d7888.png │ └── spinner-8579aaf47b1e4d2bc07c427b180679db.gif ├── favicon.ico └── robots.txt ├── test ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ ├── repos.yml │ ├── repos │ │ ├── class_method │ │ │ └── lib │ │ │ │ └── class_method.rb │ │ ├── dot-document │ │ │ ├── .document │ │ │ └── lib │ │ │ │ ├── exclude.rb │ │ │ │ └── include.rb │ │ ├── dot-yardopts │ │ │ ├── .yardopts │ │ │ └── lib │ │ │ │ ├── exclude.rb │ │ │ │ └── include.rb │ │ ├── fixture_set_file │ │ │ └── lib │ │ │ │ └── fixture_set_file.rb │ │ └── threaded │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── lib │ │ │ ├── threaded.rb │ │ │ └── threaded │ │ │ │ ├── errors.rb │ │ │ │ ├── ext │ │ │ │ └── stdout.rb │ │ │ │ ├── master.rb │ │ │ │ ├── promise.rb │ │ │ │ ├── version.rb │ │ │ │ └── worker.rb │ │ │ ├── test │ │ │ ├── test_helper.rb │ │ │ ├── threaded │ │ │ │ ├── config_test.rb │ │ │ │ ├── master_test.rb │ │ │ │ ├── promise_test.rb │ │ │ │ └── worker_test.rb │ │ │ └── threaded_test.rb │ │ │ └── threaded.gemspec │ ├── ruby │ │ └── string │ │ │ └── strip.rb │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ ├── .keep │ └── user_mailer_test.rb ├── models │ ├── .keep │ └── users_test.rb ├── parsers │ └── yard_test.rb └── test_helper.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /app/assets/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/images/spinner.gif -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/coffee_script_utilities.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/coffee_script_utilities.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/global.js -------------------------------------------------------------------------------- /app/assets/javascripts/preview_link_builder.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/preview_link_builder.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/tab_navigation.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/javascripts/tab_navigation.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/stylesheets/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /app/assets/stylesheets/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/assets/stylesheets/screen.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/doc_methods_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/doc_methods_controller.rb -------------------------------------------------------------------------------- /app/controllers/issue_assignments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/issue_assignments_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/repo_based_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/repo_based_controller.rb -------------------------------------------------------------------------------- /app/controllers/repo_subscriptions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/repo_subscriptions_controller.rb -------------------------------------------------------------------------------- /app/controllers/repos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/repos_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/after_signup_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/users/after_signup_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/users/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/doc_assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/doc_assignment.rb -------------------------------------------------------------------------------- /app/models/doc_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/doc_class.rb -------------------------------------------------------------------------------- /app/models/doc_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/doc_comment.rb -------------------------------------------------------------------------------- /app/models/doc_mailer_maker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/doc_mailer_maker.rb -------------------------------------------------------------------------------- /app/models/doc_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/doc_method.rb -------------------------------------------------------------------------------- /app/models/github_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/github_fetcher.rb -------------------------------------------------------------------------------- /app/models/github_url_from_base_path_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/github_url_from_base_path_line.rb -------------------------------------------------------------------------------- /app/models/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/repo.rb -------------------------------------------------------------------------------- /app/models/repo_subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/repo_subscription.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/doc_methods/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/doc_methods/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/layouts/_head.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/layouts/home.html.erb -------------------------------------------------------------------------------- /app/views/pages/_sign_in.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/pages/_sign_in.erb -------------------------------------------------------------------------------- /app/views/pages/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/pages/index.html.erb -------------------------------------------------------------------------------- /app/views/pages/show/how.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/pages/show/how.html.erb -------------------------------------------------------------------------------- /app/views/repo_subscriptions/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/repo_subscriptions/_list.html.erb -------------------------------------------------------------------------------- /app/views/repo_subscriptions/index.html.erb: -------------------------------------------------------------------------------- 1 | <%= render 'list' %> 2 | -------------------------------------------------------------------------------- /app/views/repo_subscriptions/new.html.erb: -------------------------------------------------------------------------------- 1 |

Subscribe To a Repo on GitHub

2 | -------------------------------------------------------------------------------- /app/views/repos/_repo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/repos/_repo.html.erb -------------------------------------------------------------------------------- /app/views/repos/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/repos/edit.html.erb -------------------------------------------------------------------------------- /app/views/repos/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/repos/index.html.erb -------------------------------------------------------------------------------- /app/views/repos/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/repos/new.html.erb -------------------------------------------------------------------------------- /app/views/repos/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/repos/show.html.erb -------------------------------------------------------------------------------- /app/views/shared/_add_repos_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/shared/_add_repos_list.html.erb -------------------------------------------------------------------------------- /app/views/shared/_repos.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/shared/_repos.html.erb -------------------------------------------------------------------------------- /app/views/subscribers/_avatars.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/subscribers/_avatars.html.erb -------------------------------------------------------------------------------- /app/views/subscribers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/subscribers/show.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/daily_docs.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/user_mailer/daily_docs.md.erb -------------------------------------------------------------------------------- /app/views/user_mailer/spam.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/user_mailer/spam.md.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/users/after_signup/set_privacy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/users/after_signup/set_privacy.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /app/views/users/token_delete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/app/views/users/token_delete.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/git_hub_bub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/git_hub_bub.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/mail.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/queue.rb -------------------------------------------------------------------------------- /config/initializers/rack_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/rack_timeout.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20130520180937_create_doc_classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130520180937_create_doc_classes.rb -------------------------------------------------------------------------------- /db/migrate/20130520181117_create_doc_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130520181117_create_doc_methods.rb -------------------------------------------------------------------------------- /db/migrate/20130520181224_create_doc_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130520181224_create_doc_comments.rb -------------------------------------------------------------------------------- /db/migrate/20130527192409_add_counter_to_methods_classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130527192409_add_counter_to_methods_classes.rb -------------------------------------------------------------------------------- /db/migrate/20130615025655_create_repos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130615025655_create_repos.rb -------------------------------------------------------------------------------- /db/migrate/20130628140340_repo_subscriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130628140340_repo_subscriptions.rb -------------------------------------------------------------------------------- /db/migrate/20130720231123_add_devise_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130720231123_add_devise_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130721164421_add_excluded_to_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130721164421_add_excluded_to_repo.rb -------------------------------------------------------------------------------- /db/migrate/20130721185642_add_line_to_doc_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130721185642_add_line_to_doc_class.rb -------------------------------------------------------------------------------- /db/migrate/20130723011912_add_github_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130723011912_add_github_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20130723024046_create_doc_assignments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20130723024046_create_doc_assignments.rb -------------------------------------------------------------------------------- /db/migrate/20131126030525_add_avatar_url_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20131126030525_add_avatar_url_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20131201182942_add_write_read_to_repo_subscriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20131201182942_add_write_read_to_repo_subscriptions.rb -------------------------------------------------------------------------------- /db/migrate/20131212023909_add_path_to_classes_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20131212023909_add_path_to_classes_methods.rb -------------------------------------------------------------------------------- /db/migrate/20140429011012_add_skip_write_to_doc_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20140429011012_add_skip_write_to_doc_methods.rb -------------------------------------------------------------------------------- /db/migrate/20140507134638_update_repo_subscription_multiple_read_write.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20140507134638_update_repo_subscription_multiple_read_write.rb -------------------------------------------------------------------------------- /db/migrate/20140524105909_add_active_to_doc_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20140524105909_add_active_to_doc_methods.rb -------------------------------------------------------------------------------- /db/migrate/20141202022842_add_skip_read_to_doc_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20141202022842_add_skip_read_to_doc_methods.rb -------------------------------------------------------------------------------- /db/migrate/20151123190940_add_commit_sha_to_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/migrate/20151123190940_add_commit_sha_to_repo.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/.DS_Store -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/docs_doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/docs_doctor.rb -------------------------------------------------------------------------------- /lib/docs_doctor/doc_obj.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/docs_doctor/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/docs_doctor/loader.rb -------------------------------------------------------------------------------- /lib/docs_doctor/loader/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/docs_doctor/loader/ruby.rb -------------------------------------------------------------------------------- /lib/docs_doctor/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/docs_doctor/parser.rb -------------------------------------------------------------------------------- /lib/docs_doctor/parsers/ruby/require 'atomic': -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/docs_doctor/parsers/ruby/require 'atomic' -------------------------------------------------------------------------------- /lib/docs_doctor/parsers/ruby/yard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/docs_doctor/parsers/ruby/yard.rb -------------------------------------------------------------------------------- /lib/docs_doctor/runner.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/docs_doctor/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/docs_doctor/task.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/schedule.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/lib/tasks/schedule.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/500.html -------------------------------------------------------------------------------- /public/assets/application-1827e6e06bf231568bff3d2ffbf66c06.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/application-1827e6e06bf231568bff3d2ffbf66c06.css -------------------------------------------------------------------------------- /public/assets/application-1827e6e06bf231568bff3d2ffbf66c06.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/application-1827e6e06bf231568bff3d2ffbf66c06.css.gz -------------------------------------------------------------------------------- /public/assets/application-7c72508673d6a380c98de4fd3b423ebb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/application-7c72508673d6a380c98de4fd3b423ebb.js -------------------------------------------------------------------------------- /public/assets/application-7c72508673d6a380c98de4fd3b423ebb.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/application-7c72508673d6a380c98de4fd3b423ebb.js.gz -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-8115abe5f2ac0bac7ff7ce2e61a59ae1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/glyphicons-halflings-8115abe5f2ac0bac7ff7ce2e61a59ae1.png -------------------------------------------------------------------------------- /public/assets/glyphicons-halflings-white-d76e09abbb60b19b137a943df4627474.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/glyphicons-halflings-white-d76e09abbb60b19b137a943df4627474.png -------------------------------------------------------------------------------- /public/assets/maildown/application-3e0cccbb54e2038718c2b538a370d24f.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/maildown/application-3e0cccbb54e2038718c2b538a370d24f.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/maildown/application-3e0cccbb54e2038718c2b538a370d24f.css.gz -------------------------------------------------------------------------------- /public/assets/maildown/application-3e0cccbb54e2038718c2b538a370d24f.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/maildown/application-3e0cccbb54e2038718c2b538a370d24f.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/maildown/application-3e0cccbb54e2038718c2b538a370d24f.js.gz -------------------------------------------------------------------------------- /public/assets/manifest-e505492b4375e129623e1bcc5d41dddb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/manifest-e505492b4375e129623e1bcc5d41dddb.json -------------------------------------------------------------------------------- /public/assets/rails-c00ed3a99bcbaa426c2b8250104d7888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/rails-c00ed3a99bcbaa426c2b8250104d7888.png -------------------------------------------------------------------------------- /public/assets/spinner-8579aaf47b1e4d2bc07c427b180679db.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/assets/spinner-8579aaf47b1e4d2bc07c427b180679db.gif -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos.yml -------------------------------------------------------------------------------- /test/fixtures/repos/class_method/lib/class_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/class_method/lib/class_method.rb -------------------------------------------------------------------------------- /test/fixtures/repos/dot-document/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/dot-document/.document -------------------------------------------------------------------------------- /test/fixtures/repos/dot-document/lib/exclude.rb: -------------------------------------------------------------------------------- 1 | def exclude 2 | end 3 | -------------------------------------------------------------------------------- /test/fixtures/repos/dot-document/lib/include.rb: -------------------------------------------------------------------------------- 1 | def include 2 | end 3 | -------------------------------------------------------------------------------- /test/fixtures/repos/dot-yardopts/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/dot-yardopts/.yardopts -------------------------------------------------------------------------------- /test/fixtures/repos/dot-yardopts/lib/exclude.rb: -------------------------------------------------------------------------------- 1 | def exclude 2 | end -------------------------------------------------------------------------------- /test/fixtures/repos/dot-yardopts/lib/include.rb: -------------------------------------------------------------------------------- 1 | def include 2 | end 3 | -------------------------------------------------------------------------------- /test/fixtures/repos/fixture_set_file/lib/fixture_set_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/fixture_set_file/lib/fixture_set_file.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.gem 3 | Gemfile.lock 4 | -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/.travis.yml -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/CHANGELOG.md -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/Gemfile -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/README.md -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/Rakefile -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/lib/threaded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/lib/threaded.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/lib/threaded/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/lib/threaded/errors.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/lib/threaded/ext/stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/lib/threaded/ext/stdout.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/lib/threaded/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/lib/threaded/master.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/lib/threaded/promise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/lib/threaded/promise.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/lib/threaded/version.rb: -------------------------------------------------------------------------------- 1 | module Threaded 2 | VERSION = "0.0.4" 3 | end 4 | -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/lib/threaded/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/lib/threaded/worker.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/test/test_helper.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/test/threaded/config_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/test/threaded/config_test.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/test/threaded/master_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/test/threaded/master_test.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/test/threaded/promise_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/test/threaded/promise_test.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/test/threaded/worker_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/test/threaded/worker_test.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/test/threaded_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/test/threaded_test.rb -------------------------------------------------------------------------------- /test/fixtures/repos/threaded/threaded.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/repos/threaded/threaded.gemspec -------------------------------------------------------------------------------- /test/fixtures/ruby/string/strip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/ruby/string/strip.rb -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/user_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/mailers/user_mailer_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/users_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/models/users_test.rb -------------------------------------------------------------------------------- /test/parsers/yard_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/parsers/yard_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetriage/docs_doctor/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------