├── .env.example ├── .gitignore ├── .gitmodules ├── .pairs ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── rails.png │ ├── javascripts │ │ ├── application.coffee │ │ ├── bootstrap.coffee │ │ ├── home.coffee │ │ ├── models │ │ │ ├── answer.coffee │ │ │ ├── group.coffee │ │ │ ├── membership.coffee │ │ │ ├── preference.coffee │ │ │ ├── question.coffee │ │ │ ├── question_comment.coffee │ │ │ ├── ranking.coffee │ │ │ └── user.coffee │ │ └── views │ │ │ ├── answer-item.coffee │ │ │ ├── application.coffee │ │ │ ├── comment_item.coffee │ │ │ ├── discussion_view.coffee │ │ │ ├── home_page.coffee │ │ │ ├── modal-form.coffee │ │ │ ├── new-question-form.coffee │ │ │ ├── question-list-item.coffee │ │ │ ├── question_page.coffee │ │ │ ├── ranking_item.coffee │ │ │ ├── relation_view.coffee │ │ │ └── timestamp_view.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css.less │ │ └── home.css.less ├── controllers │ ├── application_controller.rb │ ├── home_controller.rb │ ├── preferences_controller.rb │ ├── pusher_controller.rb │ ├── questions_controller.rb │ ├── sandbox_controller.rb │ └── sessions_controller.rb ├── helpers │ ├── application_helper.rb │ └── home_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── answer.rb │ ├── event_observer.rb │ ├── group.rb │ ├── identity.rb │ ├── majority.rb │ ├── membership.rb │ ├── preference.rb │ ├── question.rb │ ├── question_comment.rb │ ├── question_permission.rb │ ├── ranking.rb │ ├── sandbox.rb │ └── user.rb └── views │ ├── home │ └── index.html.erb │ └── layouts │ └── application.html.erb ├── config.ru ├── config ├── .env ├── application.rb ├── boot.rb ├── database.yml.example ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── secret_token.rb │ ├── sequel.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── newrelic.yml └── routes.rb ├── db ├── migrate │ ├── 20120904162652_initial_schema.rb │ ├── 20120919171223_add_question_comments.rb │ ├── 20121118014745_rename_rankings_to_preferences.rb │ ├── 20121118024604_rename_votes_to_rankings.rb │ ├── 20121207002700_create_identities.rb │ ├── 20121207003751_make_credentials_provider_agnostic.rb │ ├── 20130206123729_add_state_to_questions.rb │ ├── 20130209033728_change_state_to_archived_at.rb │ ├── 20130405021827_add_groups_and_memberships.rb │ ├── 20130406220415_add_visibility_to_questions.rb │ ├── 20130406224345_add_question_permissions.rb │ ├── 20130413042416_add_github_group_for_github_mode.rb │ ├── 20130413050710_set_github_question_visibility_to_group.rb │ └── 20130416235030_add_superusers.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep ├── build_client_dataset.rb ├── prequel_extensions.rb └── tasks │ ├── .gitkeep │ └── deploy.rake ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── favicon.png └── robots.txt ├── script └── rails ├── spec ├── controllers │ ├── home_controller_spec.rb │ ├── preferences_controller_spec.rb │ ├── pusher_controller_spec.rb │ ├── questions_controller_spec.rb │ └── sandbox_controller_spec.rb ├── javascripts │ ├── spec.css │ └── spec.js.coffee ├── models │ ├── answer_spec.rb │ ├── event_observer_spec.rb │ ├── group_spec.rb │ ├── javascripts │ ├── preference_spec.rb │ ├── question_permission_spec.rb │ ├── question_spec.rb │ ├── sandbox_spec.rb │ ├── user_spec.rb │ └── vote_spec.rb ├── spec_helper.rb └── support │ ├── blueprints.rb │ ├── controller_spec_methods.rb │ ├── model_spec_methods.rb │ └── spec_methods.rb ├── test ├── fixtures │ └── .gitkeep ├── functional │ └── .gitkeep ├── integration │ └── .gitkeep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ └── .gitkeep └── vendor └── assets ├── javascripts ├── .gitkeep ├── davis.js ├── jquery.scrollTo-1.4.3.1.js ├── jquery.timeago.js ├── jquery.ui.touch-punch.js ├── markdown.js └── space-pen.js.coffee └── stylesheets └── .gitkeep /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/.pairs -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec puma config.ru -t 0:12 -p $PORT -e $RACK_ENV 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/application.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/bootstrap.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/home.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/home.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/answer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/answer.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/group.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/group.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/membership.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/membership.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/preference.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/preference.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/question.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/question.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/question_comment.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/question_comment.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/ranking.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/ranking.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/models/user.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/models/user.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/answer-item.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/answer-item.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/application.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/comment_item.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/comment_item.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/discussion_view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/discussion_view.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/home_page.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/home_page.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/modal-form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/modal-form.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/new-question-form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/new-question-form.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/question-list-item.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/question-list-item.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/question_page.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/question_page.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/ranking_item.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/ranking_item.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/relation_view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/relation_view.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/views/timestamp_view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/javascripts/views/timestamp_view.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/home.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/assets/stylesheets/home.css.less -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/preferences_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/controllers/preferences_controller.rb -------------------------------------------------------------------------------- /app/controllers/pusher_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/controllers/pusher_controller.rb -------------------------------------------------------------------------------- /app/controllers/questions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/controllers/questions_controller.rb -------------------------------------------------------------------------------- /app/controllers/sandbox_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/controllers/sandbox_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/answer.rb -------------------------------------------------------------------------------- /app/models/event_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/event_observer.rb -------------------------------------------------------------------------------- /app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/group.rb -------------------------------------------------------------------------------- /app/models/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/identity.rb -------------------------------------------------------------------------------- /app/models/majority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/majority.rb -------------------------------------------------------------------------------- /app/models/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/membership.rb -------------------------------------------------------------------------------- /app/models/preference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/preference.rb -------------------------------------------------------------------------------- /app/models/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/question.rb -------------------------------------------------------------------------------- /app/models/question_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/question_comment.rb -------------------------------------------------------------------------------- /app/models/question_permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/question_permission.rb -------------------------------------------------------------------------------- /app/models/ranking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/ranking.rb -------------------------------------------------------------------------------- /app/models/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/sandbox.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config.ru -------------------------------------------------------------------------------- /config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/.env -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/sequel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/sequel.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20120904162652_initial_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20120904162652_initial_schema.rb -------------------------------------------------------------------------------- /db/migrate/20120919171223_add_question_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20120919171223_add_question_comments.rb -------------------------------------------------------------------------------- /db/migrate/20121118014745_rename_rankings_to_preferences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20121118014745_rename_rankings_to_preferences.rb -------------------------------------------------------------------------------- /db/migrate/20121118024604_rename_votes_to_rankings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20121118024604_rename_votes_to_rankings.rb -------------------------------------------------------------------------------- /db/migrate/20121207002700_create_identities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20121207002700_create_identities.rb -------------------------------------------------------------------------------- /db/migrate/20121207003751_make_credentials_provider_agnostic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20121207003751_make_credentials_provider_agnostic.rb -------------------------------------------------------------------------------- /db/migrate/20130206123729_add_state_to_questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130206123729_add_state_to_questions.rb -------------------------------------------------------------------------------- /db/migrate/20130209033728_change_state_to_archived_at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130209033728_change_state_to_archived_at.rb -------------------------------------------------------------------------------- /db/migrate/20130405021827_add_groups_and_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130405021827_add_groups_and_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20130406220415_add_visibility_to_questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130406220415_add_visibility_to_questions.rb -------------------------------------------------------------------------------- /db/migrate/20130406224345_add_question_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130406224345_add_question_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20130413042416_add_github_group_for_github_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130413042416_add_github_group_for_github_mode.rb -------------------------------------------------------------------------------- /db/migrate/20130413050710_set_github_question_visibility_to_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130413050710_set_github_question_visibility_to_group.rb -------------------------------------------------------------------------------- /db/migrate/20130416235030_add_superusers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/migrate/20130416235030_add_superusers.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/build_client_dataset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/lib/build_client_dataset.rb -------------------------------------------------------------------------------- /lib/prequel_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/lib/prequel_extensions.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/deploy.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/lib/tasks/deploy.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/home_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe HomeController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/controllers/preferences_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/controllers/preferences_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/pusher_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/controllers/pusher_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/questions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/controllers/questions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/sandbox_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/controllers/sandbox_controller_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/spec.css: -------------------------------------------------------------------------------- 1 | /*= require application */ 2 | 3 | body { 4 | padding: 0; 5 | } 6 | -------------------------------------------------------------------------------- /spec/javascripts/spec.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/javascripts/spec.js.coffee -------------------------------------------------------------------------------- /spec/models/answer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/answer_spec.rb -------------------------------------------------------------------------------- /spec/models/event_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/event_observer_spec.rb -------------------------------------------------------------------------------- /spec/models/group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/group_spec.rb -------------------------------------------------------------------------------- /spec/models/javascripts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/models/preference_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/preference_spec.rb -------------------------------------------------------------------------------- /spec/models/question_permission_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/question_permission_spec.rb -------------------------------------------------------------------------------- /spec/models/question_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/question_spec.rb -------------------------------------------------------------------------------- /spec/models/sandbox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/sandbox_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/vote_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/models/vote_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/blueprints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/support/blueprints.rb -------------------------------------------------------------------------------- /spec/support/controller_spec_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/support/controller_spec_methods.rb -------------------------------------------------------------------------------- /spec/support/model_spec_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/support/model_spec_methods.rb -------------------------------------------------------------------------------- /spec/support/spec_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/spec/support/spec_methods.rb -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/davis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/vendor/assets/javascripts/davis.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.scrollTo-1.4.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/vendor/assets/javascripts/jquery.scrollTo-1.4.3.1.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/vendor/assets/javascripts/jquery.timeago.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.ui.touch-punch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/vendor/assets/javascripts/jquery.ui.touch-punch.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/vendor/assets/javascripts/markdown.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/space-pen.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathansobo/hyperarchy/HEAD/vendor/assets/javascripts/space-pen.js.coffee -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------