├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── Rakefile ├── app ├── controllers │ ├── application_controller.rb │ ├── corrections_controller.rb │ ├── home_controller.rb │ ├── results_controller.rb │ ├── stats_controller.rb │ └── votes_controller.rb ├── helpers │ └── application_helper.rb ├── models │ ├── article.rb │ ├── normalized_tagging.rb │ ├── normalized_term.rb │ ├── tagging.rb │ ├── term.rb │ └── vote.rb └── views │ ├── corrections │ └── new.html.erb │ ├── home │ └── index.html.erb │ ├── layouts │ └── application.html.erb │ ├── results │ ├── _pagination.html.erb │ └── index.html.erb │ ├── stats │ └── index.html.erb │ └── votes │ ├── done.html.erb │ └── new.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults_5_2.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20090706224559_initial_models.rb │ ├── 20090714204353_add_term_tables.rb │ └── 20090719224733_vote_against_normalized_taggings.rb ├── schema.rb └── seeds.rb ├── latest.dump ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── assets │ └── manifest.yml ├── favicon.ico ├── images │ └── rails.png ├── javascripts │ ├── application.js │ ├── controls.js │ ├── dragdrop.js │ ├── effects.js │ └── prototype.js ├── robots.txt └── stylesheets │ ├── basic.css │ ├── reset-min.css │ └── screen.css ├── script ├── link_results ├── parse-results.rb └── rails └── test ├── functional └── .gitkeep ├── integration └── .gitkeep ├── performance └── browsing_test.rb ├── test_helper.rb └── unit └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | /tmp 2 | /log 3 | /db/*.sqlite3 4 | /config/database.yml 5 | /doc 6 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.1 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec thin start -p $PORT -e $RACK_ENV 2 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/corrections_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/controllers/corrections_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/results_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/controllers/results_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/controllers/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/votes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/controllers/votes_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/models/article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/models/article.rb -------------------------------------------------------------------------------- /app/models/normalized_tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/models/normalized_tagging.rb -------------------------------------------------------------------------------- /app/models/normalized_term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/models/normalized_term.rb -------------------------------------------------------------------------------- /app/models/tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/models/tagging.rb -------------------------------------------------------------------------------- /app/models/term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/models/term.rb -------------------------------------------------------------------------------- /app/models/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/models/vote.rb -------------------------------------------------------------------------------- /app/views/corrections/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/corrections/new.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/results/_pagination.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/results/_pagination.html.erb -------------------------------------------------------------------------------- /app/views/results/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/results/index.html.erb -------------------------------------------------------------------------------- /app/views/stats/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/stats/index.html.erb -------------------------------------------------------------------------------- /app/views/votes/done.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/votes/done.html.erb -------------------------------------------------------------------------------- /app/views/votes/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/app/views/votes/new.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_5_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/new_framework_defaults_5_2.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20090706224559_initial_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/db/migrate/20090706224559_initial_models.rb -------------------------------------------------------------------------------- /db/migrate/20090714204353_add_term_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/db/migrate/20090714204353_add_term_tables.rb -------------------------------------------------------------------------------- /db/migrate/20090719224733_vote_against_normalized_taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/db/migrate/20090719224733_vote_against_normalized_taggings.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /latest.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/latest.dump -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/500.html -------------------------------------------------------------------------------- /public/assets/manifest.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/images/rails.png -------------------------------------------------------------------------------- /public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/javascripts/application.js -------------------------------------------------------------------------------- /public/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/javascripts/controls.js -------------------------------------------------------------------------------- /public/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/javascripts/dragdrop.js -------------------------------------------------------------------------------- /public/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/javascripts/effects.js -------------------------------------------------------------------------------- /public/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/javascripts/prototype.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/stylesheets/basic.css -------------------------------------------------------------------------------- /public/stylesheets/reset-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/stylesheets/reset-min.css -------------------------------------------------------------------------------- /public/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/public/stylesheets/screen.css -------------------------------------------------------------------------------- /script/link_results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/script/link_results -------------------------------------------------------------------------------- /script/parse-results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/script/parse-results.rb -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/script/rails -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threedaymonk/kill-or-cure/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------