├── .gitignore ├── .pryrc ├── .ruby-version ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app-css ├── _mixins.css.sass ├── components │ ├── .gitkeep │ ├── detail-panel.css.sass │ ├── flash-message.css.sass │ ├── index.css.sass │ ├── list-subscriber-form.css.sass │ ├── loader.css.scss │ └── user-profile.css.sass └── pages │ ├── content-page.css.sass │ ├── index.css.sass │ └── user-page.css.sass ├── app-js ├── components │ ├── .gitkeep │ ├── about.js.es6 │ ├── bucket-scroll.js.es6 │ ├── feedback.js.es6 │ ├── flash-message.js.es6 │ ├── index.js.es6 │ ├── list-subscriber-form.js.es6 │ ├── new-project.js.es6 │ ├── project-list.js.es6 │ ├── tooltips.js.es6 │ └── votes.js.es6 └── vendor │ ├── js.cookie-2.0.4.min.js │ └── lodash-inflection.js ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── jacques.png │ │ ├── marc.jpg │ │ └── mark.jpg │ ├── javascripts │ │ ├── application.js │ │ └── dependencies.js │ └── stylesheets │ │ ├── _bootstrap-override-variables.scss │ │ ├── _responsive.sass │ │ ├── application.sass │ │ └── dependencies.sass ├── controllers │ ├── application_controller.rb │ ├── audit_logs_controller.rb │ ├── concerns │ │ └── .keep │ ├── help_controller.rb │ ├── list_subscribers_controller.rb │ ├── pages_controller.rb │ ├── projects_controller.rb │ ├── sessions_controller.rb │ └── users_controller.rb ├── forms │ └── project_form.rb ├── helpers │ └── application_helper.rb ├── interactors │ ├── auth_user.rb │ ├── base_interactor.rb │ ├── post_auth.rb │ ├── pre_auth.rb │ └── update_project.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── audit_log.rb │ ├── concerns │ │ └── .keep │ ├── feedback.rb │ ├── list_subscriber.rb │ ├── project.rb │ ├── user.rb │ └── vote.rb ├── serializers │ ├── feedback_serializer.rb │ └── project_serializer.rb └── views │ ├── audit_logs │ ├── edit.html.haml │ └── index.html.haml │ ├── help │ ├── about.haml │ ├── contact.haml │ ├── faqs.haml │ ├── guidelines.haml │ └── team.haml │ ├── layouts │ ├── _analytics.html.erb │ ├── _detail_panel.html.haml │ ├── _flash_messages.html.haml │ ├── _help.html.haml │ ├── _navbar.html.haml │ ├── _rollbar.html.erb │ └── application.html.haml │ ├── list_subscribers │ ├── _subscribe_form.html.erb │ ├── confirm.html.erb │ ├── edit.html.haml │ └── success.html.haml │ ├── pages │ ├── about.html.erb │ └── devauth.html.haml │ ├── projects │ ├── _detail.html.haml │ ├── _end_of_buckets.html.haml │ ├── _project.atom.jbuilder │ ├── _project.rss.jbuilder │ ├── _project_listings.html.haml │ ├── _projects_for_bucket.html.haml │ ├── already_submitted.html.haml │ ├── bucket.html.haml │ ├── edit.html.haml │ ├── index.atom.builder │ ├── index.html.haml │ ├── index.rss.builder │ ├── new.html.haml │ ├── recent.atom.builder │ ├── recent.rss.builder │ └── vote_confirm.html.erb │ ├── sessions │ ├── auth_failure.html.haml │ └── logout.html.haml │ └── users │ ├── edit.html.haml │ └── show.html.haml ├── bin ├── bundle ├── rails ├── rake ├── rspec ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── check_for_twitter_keys.rb │ ├── config.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── rollbar.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── settings.local.yml.example ├── settings.yml └── settings │ ├── development.yml │ ├── production.yml │ └── test.yml ├── db ├── migrate │ ├── 20151216045210_create_users.rb │ ├── 20151216045228_create_votes.rb │ ├── 20151216045237_create_projects.rb │ ├── 20151216052011_create_list_subscribers.rb │ ├── 20151217054927_create_feedbacks.rb │ ├── 20151217093858_create_audit_logs.rb │ ├── 20151217110511_create_ranking_pg_functions.rb │ ├── 20151220212736_add_note_to_audit_logs.rb │ ├── 20151221073236_update_feedback_session_column.rb │ ├── 20151221081710_add_fields_to_list_subscriber.rb │ └── 20151221232302_add_format_to_list_subscribers.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── ext │ ├── date_ext.rb │ └── serialize_ext.rb └── tasks │ ├── .keep │ ├── auto_annotate_models.rake │ └── new_project.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── favicon.ico ├── favicon.png ├── fonts │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 └── robots.txt ├── spec ├── factories.rb ├── factories │ ├── project_factory.rb │ └── user_factory.rb ├── features │ └── edit_project_spec.rb ├── forms │ └── project_form_spec.rb ├── interactors │ └── update_project_spec.rb ├── models │ ├── audit_log_spec.rb │ ├── list_subscriber_spec.rb │ ├── project_spec.rb │ ├── user_spec.rb │ └── vote_spec.rb ├── rails_helper.rb ├── requests │ ├── .gitkeep │ ├── audit_logs_spec.rb │ ├── projects_spec.rb │ └── users_spec.rb ├── spec_helper.rb └── support │ └── factory_girl.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets ├── .keep └── bootstrap ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── assets ├── fonts │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── images │ └── .keep ├── javascripts │ ├── bootstrap-sprockets.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── bootstrap │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js └── stylesheets │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ ├── _bootstrap-sprockets.scss │ ├── _bootstrap.scss │ └── bootstrap │ ├── _alerts.scss │ ├── _badges.scss │ ├── _breadcrumbs.scss │ ├── _button-groups.scss │ ├── _buttons.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _component-animations.scss │ ├── _dropdowns.scss │ ├── _forms.scss │ ├── _glyphicons.scss │ ├── _grid.scss │ ├── _input-groups.scss │ ├── _jumbotron.scss │ ├── _labels.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modals.scss │ ├── _navbar.scss │ ├── _navs.scss │ ├── _normalize.scss │ ├── _pager.scss │ ├── _pagination.scss │ ├── _panels.scss │ ├── _popovers.scss │ ├── _print.scss │ ├── _progress-bars.scss │ ├── _responsive-embed.scss │ ├── _responsive-utilities.scss │ ├── _scaffolding.scss │ ├── _tables.scss │ ├── _theme.scss │ ├── _thumbnails.scss │ ├── _tooltip.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── _wells.scss │ └── mixins │ ├── _alerts.scss │ ├── _background-variant.scss │ ├── _border-radius.scss │ ├── _buttons.scss │ ├── _center-block.scss │ ├── _clearfix.scss │ ├── _forms.scss │ ├── _gradients.scss │ ├── _grid-framework.scss │ ├── _grid.scss │ ├── _hide-text.scss │ ├── _image.scss │ ├── _labels.scss │ ├── _list-group.scss │ ├── _nav-divider.scss │ ├── _nav-vertical-align.scss │ ├── _opacity.scss │ ├── _pagination.scss │ ├── _panels.scss │ ├── _progress-bar.scss │ ├── _reset-filter.scss │ ├── _reset-text.scss │ ├── _resize.scss │ ├── _responsive-visibility.scss │ ├── _size.scss │ ├── _tab-focus.scss │ ├── _table-row.scss │ ├── _text-emphasis.scss │ ├── _text-overflow.scss │ └── _vendor-prefixes.scss ├── bootstrap-sass.gemspec ├── bower.json ├── composer.json ├── lib ├── bootstrap-sass.rb └── bootstrap-sass │ ├── engine.rb │ └── version.rb ├── package.json ├── sache.json ├── tasks ├── bower.rake ├── converter.rb └── converter │ ├── char_string_scanner.rb │ ├── fonts_conversion.rb │ ├── js_conversion.rb │ ├── less_conversion.rb │ ├── logger.rb │ └── network.rb └── templates └── project ├── _bootstrap-variables.sass ├── manifest.rb └── styles.sass /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/.gitignore -------------------------------------------------------------------------------- /.pryrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.4 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/Rakefile -------------------------------------------------------------------------------- /app-css/_mixins.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/_mixins.css.sass -------------------------------------------------------------------------------- /app-css/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app-css/components/detail-panel.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/components/detail-panel.css.sass -------------------------------------------------------------------------------- /app-css/components/flash-message.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/components/flash-message.css.sass -------------------------------------------------------------------------------- /app-css/components/index.css.sass: -------------------------------------------------------------------------------- 1 | //= require_tree ./ 2 | -------------------------------------------------------------------------------- /app-css/components/list-subscriber-form.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/components/list-subscriber-form.css.sass -------------------------------------------------------------------------------- /app-css/components/loader.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/components/loader.css.scss -------------------------------------------------------------------------------- /app-css/components/user-profile.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/components/user-profile.css.sass -------------------------------------------------------------------------------- /app-css/pages/content-page.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/pages/content-page.css.sass -------------------------------------------------------------------------------- /app-css/pages/index.css.sass: -------------------------------------------------------------------------------- 1 | //= require_tree ./ 2 | -------------------------------------------------------------------------------- /app-css/pages/user-page.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-css/pages/user-page.css.sass -------------------------------------------------------------------------------- /app-js/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app-js/components/about.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/about.js.es6 -------------------------------------------------------------------------------- /app-js/components/bucket-scroll.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/bucket-scroll.js.es6 -------------------------------------------------------------------------------- /app-js/components/feedback.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/feedback.js.es6 -------------------------------------------------------------------------------- /app-js/components/flash-message.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/flash-message.js.es6 -------------------------------------------------------------------------------- /app-js/components/index.js.es6: -------------------------------------------------------------------------------- 1 | //= require_tree ./ 2 | -------------------------------------------------------------------------------- /app-js/components/list-subscriber-form.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/list-subscriber-form.js.es6 -------------------------------------------------------------------------------- /app-js/components/new-project.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/new-project.js.es6 -------------------------------------------------------------------------------- /app-js/components/project-list.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/project-list.js.es6 -------------------------------------------------------------------------------- /app-js/components/tooltips.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/tooltips.js.es6 -------------------------------------------------------------------------------- /app-js/components/votes.js.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/components/votes.js.es6 -------------------------------------------------------------------------------- /app-js/vendor/js.cookie-2.0.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/vendor/js.cookie-2.0.4.min.js -------------------------------------------------------------------------------- /app-js/vendor/lodash-inflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app-js/vendor/lodash-inflection.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/jacques.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/assets/images/jacques.png -------------------------------------------------------------------------------- /app/assets/images/marc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/assets/images/marc.jpg -------------------------------------------------------------------------------- /app/assets/images/mark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/assets/images/mark.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | //= require components 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/assets/javascripts/dependencies.js -------------------------------------------------------------------------------- /app/assets/stylesheets/_bootstrap-override-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/assets/stylesheets/_bootstrap-override-variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_responsive.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/assets/stylesheets/_responsive.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/application.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/assets/stylesheets/application.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/dependencies.sass: -------------------------------------------------------------------------------- 1 | //= require bootstrap 2 | -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/audit_logs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/audit_logs_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/help_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/help_controller.rb -------------------------------------------------------------------------------- /app/controllers/list_subscribers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/list_subscribers_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/forms/project_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/forms/project_form.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/interactors/auth_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/interactors/auth_user.rb -------------------------------------------------------------------------------- /app/interactors/base_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/interactors/base_interactor.rb -------------------------------------------------------------------------------- /app/interactors/post_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/interactors/post_auth.rb -------------------------------------------------------------------------------- /app/interactors/pre_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/interactors/pre_auth.rb -------------------------------------------------------------------------------- /app/interactors/update_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/interactors/update_project.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/audit_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/models/audit_log.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/models/feedback.rb -------------------------------------------------------------------------------- /app/models/list_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/models/list_subscriber.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/models/vote.rb -------------------------------------------------------------------------------- /app/serializers/feedback_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/serializers/feedback_serializer.rb -------------------------------------------------------------------------------- /app/serializers/project_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/serializers/project_serializer.rb -------------------------------------------------------------------------------- /app/views/audit_logs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/audit_logs/edit.html.haml -------------------------------------------------------------------------------- /app/views/audit_logs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/audit_logs/index.html.haml -------------------------------------------------------------------------------- /app/views/help/about.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/help/about.haml -------------------------------------------------------------------------------- /app/views/help/contact.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/help/contact.haml -------------------------------------------------------------------------------- /app/views/help/faqs.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/help/faqs.haml -------------------------------------------------------------------------------- /app/views/help/guidelines.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/help/guidelines.haml -------------------------------------------------------------------------------- /app/views/help/team.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/help/team.haml -------------------------------------------------------------------------------- /app/views/layouts/_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/layouts/_analytics.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_detail_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/layouts/_detail_panel.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_flash_messages.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/layouts/_flash_messages.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_help.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/layouts/_help.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_navbar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/layouts/_navbar.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_rollbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/layouts/_rollbar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/list_subscribers/_subscribe_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/list_subscribers/_subscribe_form.html.erb -------------------------------------------------------------------------------- /app/views/list_subscribers/confirm.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/list_subscribers/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/list_subscribers/edit.html.haml -------------------------------------------------------------------------------- /app/views/list_subscribers/success.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/list_subscribers/success.html.haml -------------------------------------------------------------------------------- /app/views/pages/about.html.erb: -------------------------------------------------------------------------------- 1 | <%= render "pages/about_screen", static: true %> 2 | -------------------------------------------------------------------------------- /app/views/pages/devauth.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/pages/devauth.html.haml -------------------------------------------------------------------------------- /app/views/projects/_detail.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/_detail.html.haml -------------------------------------------------------------------------------- /app/views/projects/_end_of_buckets.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/_end_of_buckets.html.haml -------------------------------------------------------------------------------- /app/views/projects/_project.atom.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/_project.atom.jbuilder -------------------------------------------------------------------------------- /app/views/projects/_project.rss.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/_project.rss.jbuilder -------------------------------------------------------------------------------- /app/views/projects/_project_listings.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/_project_listings.html.haml -------------------------------------------------------------------------------- /app/views/projects/_projects_for_bucket.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/_projects_for_bucket.html.haml -------------------------------------------------------------------------------- /app/views/projects/already_submitted.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/already_submitted.html.haml -------------------------------------------------------------------------------- /app/views/projects/bucket.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/bucket.html.haml -------------------------------------------------------------------------------- /app/views/projects/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/edit.html.haml -------------------------------------------------------------------------------- /app/views/projects/index.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/index.atom.builder -------------------------------------------------------------------------------- /app/views/projects/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/index.html.haml -------------------------------------------------------------------------------- /app/views/projects/index.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/index.rss.builder -------------------------------------------------------------------------------- /app/views/projects/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/new.html.haml -------------------------------------------------------------------------------- /app/views/projects/recent.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/recent.atom.builder -------------------------------------------------------------------------------- /app/views/projects/recent.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/recent.rss.builder -------------------------------------------------------------------------------- /app/views/projects/vote_confirm.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/projects/vote_confirm.html.erb -------------------------------------------------------------------------------- /app/views/sessions/auth_failure.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/sessions/auth_failure.html.haml -------------------------------------------------------------------------------- /app/views/sessions/logout.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/sessions/logout.html.haml -------------------------------------------------------------------------------- /app/views/users/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/users/edit.html.haml -------------------------------------------------------------------------------- /app/views/users/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/app/views/users/show.html.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/check_for_twitter_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/check_for_twitter_keys.rb -------------------------------------------------------------------------------- /config/initializers/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/config.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/rollbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/rollbar.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/settings.local.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/settings.local.yml.example -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/config/settings.yml -------------------------------------------------------------------------------- /config/settings/development.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/production.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/test.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrate/20151216045210_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151216045210_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20151216045228_create_votes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151216045228_create_votes.rb -------------------------------------------------------------------------------- /db/migrate/20151216045237_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151216045237_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20151216052011_create_list_subscribers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151216052011_create_list_subscribers.rb -------------------------------------------------------------------------------- /db/migrate/20151217054927_create_feedbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151217054927_create_feedbacks.rb -------------------------------------------------------------------------------- /db/migrate/20151217093858_create_audit_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151217093858_create_audit_logs.rb -------------------------------------------------------------------------------- /db/migrate/20151217110511_create_ranking_pg_functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151217110511_create_ranking_pg_functions.rb -------------------------------------------------------------------------------- /db/migrate/20151220212736_add_note_to_audit_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151220212736_add_note_to_audit_logs.rb -------------------------------------------------------------------------------- /db/migrate/20151221073236_update_feedback_session_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151221073236_update_feedback_session_column.rb -------------------------------------------------------------------------------- /db/migrate/20151221081710_add_fields_to_list_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151221081710_add_fields_to_list_subscriber.rb -------------------------------------------------------------------------------- /db/migrate/20151221232302_add_format_to_list_subscribers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/migrate/20151221232302_add_format_to_list_subscribers.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ext/date_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/lib/ext/date_ext.rb -------------------------------------------------------------------------------- /lib/ext/serialize_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/lib/ext/serialize_ext.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /lib/tasks/new_project.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/lib/tasks/new_project.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/factories/project_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/factories/project_factory.rb -------------------------------------------------------------------------------- /spec/factories/user_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/factories/user_factory.rb -------------------------------------------------------------------------------- /spec/features/edit_project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/features/edit_project_spec.rb -------------------------------------------------------------------------------- /spec/forms/project_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/forms/project_form_spec.rb -------------------------------------------------------------------------------- /spec/interactors/update_project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/interactors/update_project_spec.rb -------------------------------------------------------------------------------- /spec/models/audit_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/models/audit_log_spec.rb -------------------------------------------------------------------------------- /spec/models/list_subscriber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/models/list_subscriber_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/vote_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/models/vote_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/requests/audit_logs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/requests/audit_logs_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/requests/projects_spec.rb -------------------------------------------------------------------------------- /spec/requests/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/requests/users_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/factory_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/spec/support/factory_girl.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/.gitignore -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/.travis.yml -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/Gemfile -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/LICENSE -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/README.md -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/Rakefile -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap-sprockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap-sprockets.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/affix.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/alert.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/button.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/carousel.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/collapse.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/dropdown.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/modal.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/popover.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/scrollspy.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/tab.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/tooltip.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/javascripts/bootstrap/transition.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap-compass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap-compass.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap-mincer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap-mincer.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap-sprockets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap-sprockets.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/_bootstrap.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_badges.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_breadcrumbs.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_button-groups.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_close.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_code.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_component-animations.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_dropdowns.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_forms.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_glyphicons.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_grid.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_input-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_input-groups.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_labels.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_media.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_modals.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_navs.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_normalize.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_pager.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_panels.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_popovers.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_print.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_progress-bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_progress-bars.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_responsive-embed.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_responsive-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_responsive-utilities.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_scaffolding.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_tables.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_theme.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_thumbnails.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_type.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_variables.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/_wells.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_alerts.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_background-variant.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_center-block.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_hide-text.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_labels.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_opacity.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_panels.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_progress-bar.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_reset-filter.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_tab-focus.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_text-overflow.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/bootstrap-sass.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/bootstrap-sass.gemspec -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/bower.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/composer.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/lib/bootstrap-sass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/lib/bootstrap-sass.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/lib/bootstrap-sass/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/lib/bootstrap-sass/engine.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/lib/bootstrap-sass/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/lib/bootstrap-sass/version.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/package.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/sache.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/bower.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/bower.rake -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/converter.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/converter/char_string_scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/converter/char_string_scanner.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/converter/fonts_conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/converter/fonts_conversion.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/converter/js_conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/converter/js_conversion.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/converter/less_conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/converter/less_conversion.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/converter/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/converter/logger.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/tasks/converter/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/tasks/converter/network.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/templates/project/_bootstrap-variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/templates/project/_bootstrap-variables.sass -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/templates/project/manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/templates/project/manifest.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap/templates/project/styles.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenHunting/openhunt/HEAD/vendor/assets/stylesheets/bootstrap/templates/project/styles.sass --------------------------------------------------------------------------------