├── .bowerrc ├── .byebug_history ├── .codeclimate.yml ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .hound.yml ├── .rubocop.yml ├── .scss-lint.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── HEROKU.md ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── 14369.jpg │ │ ├── HelpyBrowser.png │ │ ├── cheatsheet-bg.png │ │ ├── favicon.ico │ │ ├── helpy-logo.png │ │ ├── helpy-logo.svg │ │ ├── icons │ │ │ ├── 001_01.png │ │ │ ├── 001_02.png │ │ │ ├── 001_03.png │ │ │ ├── 001_04.png │ │ │ ├── 001_05.png │ │ │ ├── 001_06.png │ │ │ ├── 001_07.png │ │ │ ├── 001_08.png │ │ │ ├── 001_09.png │ │ │ ├── 001_10.png │ │ │ ├── 001_11.png │ │ │ ├── 001_12.png │ │ │ ├── 001_13.png │ │ │ ├── 001_14.png │ │ │ ├── 001_15.png │ │ │ ├── 001_16.png │ │ │ ├── 001_17.png │ │ │ ├── 001_18.png │ │ │ ├── 001_19.png │ │ │ ├── 001_20.png │ │ │ ├── 001_21.png │ │ │ ├── 001_22.png │ │ │ ├── 001_23.png │ │ │ ├── 001_24.png │ │ │ ├── 001_25.png │ │ │ ├── 001_26.png │ │ │ ├── 001_27.png │ │ │ ├── 001_28.png │ │ │ ├── 001_29.png │ │ │ ├── 001_30.png │ │ │ ├── 001_31.png │ │ │ ├── 001_32.png │ │ │ ├── 001_33.png │ │ │ ├── 001_34.png │ │ │ ├── 001_35.png │ │ │ ├── 001_36.png │ │ │ ├── 001_37.png │ │ │ ├── 001_38.png │ │ │ ├── 001_39.png │ │ │ ├── 001_40.png │ │ │ ├── 001_41.png │ │ │ ├── 001_42.png │ │ │ ├── 001_43.png │ │ │ ├── 001_44.png │ │ │ ├── 001_45.png │ │ │ ├── 001_46.png │ │ │ ├── 001_47.png │ │ │ ├── 001_48.png │ │ │ ├── 001_49.png │ │ │ ├── 001_50.png │ │ │ ├── 001_51.png │ │ │ ├── 001_52.png │ │ │ ├── 001_53.png │ │ │ ├── 001_54.png │ │ │ ├── 001_55.png │ │ │ ├── 001_56.png │ │ │ ├── 001_57.png │ │ │ ├── 001_58.png │ │ │ ├── 001_59.png │ │ │ └── 001_60.png │ │ ├── logo.png │ │ ├── mark-editable.png │ │ ├── question-logo.svg │ │ └── widgets │ │ │ ├── tooltip_arrow.gif │ │ │ └── tooltip_image.gif │ ├── javascripts │ │ ├── admin.js │ │ ├── api_keys.js │ │ ├── app.js │ │ ├── application.js │ │ ├── bootstrap.js │ │ ├── errors.js │ │ ├── event-tracking.js │ │ ├── rails.validations.callbacks.js │ │ ├── rtl.js │ │ ├── shortcuts.js │ │ └── widget.v1.js │ └── stylesheets │ │ ├── admin.scss │ │ ├── api_keys.scss │ │ ├── application.scss │ │ ├── autocomplete.css │ │ ├── base.scss │ │ ├── bootstrap-overrides.scss │ │ ├── categories.scss │ │ ├── comments.scss │ │ ├── docs.scss │ │ ├── errors.scss │ │ ├── forums.scss │ │ ├── home.scss │ │ ├── locales.scss │ │ ├── onboard.scss │ │ ├── posts.scss │ │ ├── result.scss │ │ ├── rtl.scss │ │ ├── shared.scss │ │ ├── topics.scss │ │ ├── users.scss │ │ └── widget.v1.css ├── controllers │ ├── admin │ │ ├── api_keys_controller.rb │ │ ├── base_controller.rb │ │ ├── categories_controller.rb │ │ ├── dashboard_controller.rb │ │ ├── docs_controller.rb │ │ ├── forums_controller.rb │ │ ├── groups_controller.rb │ │ ├── images_controller.rb │ │ ├── internal_categories_controller.rb │ │ ├── internal_docs_controller.rb │ │ ├── onboarding_controller.rb │ │ ├── posts_controller.rb │ │ ├── reports_controller.rb │ │ ├── search_controller.rb │ │ ├── settings_controller.rb │ │ ├── shared_controller.rb │ │ ├── topics_controller.rb │ │ └── users_controller.rb │ ├── admin_controller.rb │ ├── api │ │ ├── base.rb │ │ └── v1 │ │ │ ├── base.rb │ │ │ ├── categories.rb │ │ │ ├── defaults.rb │ │ │ ├── docs.rb │ │ │ ├── flags.rb │ │ │ ├── forums.rb │ │ │ ├── posts.rb │ │ │ ├── search.rb │ │ │ ├── settings.rb │ │ │ ├── topics.rb │ │ │ └── users.rb │ ├── application_controller.rb │ ├── categories_controller.rb │ ├── comments_controller.rb │ ├── concerns │ │ └── .keep │ ├── docs_controller.rb │ ├── errors_controller.rb │ ├── flags_controller.rb │ ├── forums_controller.rb │ ├── home_controller.rb │ ├── locales_controller.rb │ ├── omniauth_callbacks_controller.rb │ ├── omniauth_controller.rb │ ├── passwords_controller.rb │ ├── posts_controller.rb │ ├── registrations_controller.rb │ ├── result_controller.rb │ ├── sessions_controller.rb │ ├── topics_controller.rb │ ├── users_controller.rb │ ├── webhook │ │ ├── base_controller.rb │ │ └── inbound_controller.rb │ └── widget │ │ ├── base_controller.rb │ │ └── topics_controller.rb ├── helpers │ ├── admin │ │ ├── internal_categories_helper.rb │ │ ├── internal_docs_helper.rb │ │ └── reports_helper.rb │ ├── admin_helper.rb │ ├── api_keys_helper.rb │ ├── application_helper.rb │ ├── categories_helper.rb │ ├── comments_helper.rb │ ├── docs_helper.rb │ ├── errors_helper.rb │ ├── forums_helper.rb │ ├── home_helper.rb │ ├── images_helper.rb │ ├── locales_helper.rb │ ├── posts_helper.rb │ ├── result_helper.rb │ ├── stats_helper.rb │ ├── topics_helper.rb │ └── users_helper.rb ├── jobs │ └── tracker_job.rb ├── mailers │ ├── .keep │ ├── application_mailer.rb │ ├── devise_mailer.rb │ ├── notification_mailer.rb │ ├── post_mailer.rb │ ├── topic_mailer.rb │ └── user_mailer.rb ├── models │ ├── .keep │ ├── api_key.rb │ ├── app_settings.rb │ ├── category.rb │ ├── concerns │ │ ├── .keep │ │ └── sentence_case.rb │ ├── doc.rb │ ├── entity │ │ ├── base.rb │ │ ├── category.rb │ │ ├── doc.rb │ │ ├── flag.rb │ │ ├── forum.rb │ │ ├── post.rb │ │ ├── search.rb │ │ ├── topic.rb │ │ └── user.rb │ ├── flag.rb │ ├── forum.rb │ ├── image.rb │ ├── logo.rb │ ├── post.rb │ ├── theme.rb │ ├── topic.rb │ ├── user.rb │ └── vote.rb ├── themes │ ├── flat │ │ ├── about.markdown │ │ ├── assets │ │ │ ├── images │ │ │ │ └── flat │ │ │ │ │ └── .gitkeep │ │ │ ├── javascripts │ │ │ │ └── flat │ │ │ │ │ ├── all.js │ │ │ │ │ ├── menu.js │ │ │ │ │ └── sidr.js │ │ │ └── stylesheets │ │ │ │ └── flat │ │ │ │ ├── all.scss │ │ │ │ ├── bootstrap-overrides.scss │ │ │ │ ├── flat.scss │ │ │ │ └── slideout.scss │ │ ├── flat.png │ │ ├── locales │ │ │ ├── .gitkeep │ │ │ └── en.yml │ │ └── views │ │ │ ├── categories │ │ │ └── show.html.erb │ │ │ ├── devise │ │ │ └── sessions │ │ │ │ └── new.html.erb │ │ │ ├── home │ │ │ └── index.html.erb │ │ │ └── layouts │ │ │ ├── _above_header.html.erb │ │ │ ├── _head.html.erb │ │ │ ├── _header.html.erb │ │ │ ├── _page_title.html.erb │ │ │ ├── clean.html.erb │ │ │ └── flat.html.erb │ ├── helpy │ │ ├── about.markdown │ │ ├── assets │ │ │ ├── images │ │ │ │ └── helpy │ │ │ │ │ └── .gitkeep │ │ │ ├── javascripts │ │ │ │ └── helpy │ │ │ │ │ └── all.js │ │ │ └── stylesheets │ │ │ │ └── helpy │ │ │ │ └── all.css │ │ ├── helpy.png │ │ ├── locales │ │ │ └── .gitkeep │ │ └── views │ │ │ └── layouts │ │ │ ├── _page_title.html.erb │ │ │ ├── devise.html.erb │ │ │ └── helpy.html.erb │ └── light │ │ ├── about.markdown │ │ ├── assets │ │ ├── images │ │ │ └── light │ │ │ │ └── .gitkeep │ │ ├── javascripts │ │ │ └── light │ │ │ │ ├── all.js │ │ │ │ ├── menu.js │ │ │ │ └── sidr.js │ │ └── stylesheets │ │ │ └── light │ │ │ ├── all.scss │ │ │ ├── bootstrap-overrides.scss │ │ │ ├── light.scss │ │ │ └── slideout.scss │ │ ├── light.png │ │ ├── locales │ │ └── .gitkeep │ │ └── views │ │ ├── categories │ │ └── show.html.erb │ │ ├── devise │ │ └── sessions │ │ │ └── new.html.erb │ │ ├── home │ │ └── index.html.erb │ │ └── layouts │ │ ├── _above_header.html.erb │ │ ├── _did_this_help.html.erb │ │ ├── _head.html.erb │ │ ├── _header.html.erb │ │ ├── _page_title.html.erb │ │ ├── clean.html.erb │ │ └── light.html.erb ├── uploaders │ ├── attachment_uploader.rb │ ├── image_uploader.rb │ ├── logo_uploader.rb │ └── profile_image_uploader.rb └── views │ ├── admin │ ├── api_keys │ │ ├── _api_key.html.erb │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ └── index.html.erb │ ├── categories │ │ ├── _cat.html.erb │ │ ├── _doc.html.erb │ │ ├── _form.html.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── update.js.erb │ ├── docs │ │ ├── _attachment.html.erb │ │ ├── _form.html.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── forums │ │ ├── _form.html.erb │ │ ├── _forum.html.erb │ │ ├── destroy.js.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── groups │ │ ├── _form.html.erb │ │ ├── _group.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── internal_categories │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── internal_docs │ │ ├── _comment.html.erb │ │ ├── _comment_form.html.erb │ │ ├── _doc.html.erb │ │ └── show.html.erb │ ├── onboarding │ │ ├── complete.html.erb │ │ └── index.html.erb │ ├── posts │ │ ├── _edit.html.erb │ │ ├── _new_user_form.html.erb │ │ ├── _user_search.html.erb │ │ ├── cancel.js.erb │ │ ├── create.js.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── new_user.js.erb │ │ ├── raw.html.erb │ │ ├── search.js.erb │ │ └── update.js.erb │ ├── reports │ │ ├── _agent_stats.html.erb │ │ ├── _date_selector.html.erb │ │ ├── _report_header.html.erb │ │ ├── _reports_nav.html.erb │ │ ├── groups.html.erb │ │ ├── index.html.erb │ │ └── team.html.erb │ ├── search │ │ ├── _topic_search.html.erb │ │ ├── search.html.erb │ │ └── search.js.erb │ ├── settings │ │ ├── _menu.html.erb │ │ ├── design.html.erb │ │ ├── email.html.erb │ │ ├── general.html.erb │ │ ├── i18n.html.erb │ │ ├── index.html.erb │ │ ├── integration.html.erb │ │ ├── notifications.html.erb │ │ ├── profile.html.erb │ │ ├── theme.html.erb │ │ ├── update_settings.js.erb │ │ └── widget.html.erb │ ├── shared │ │ └── _pipeline.html.erb │ ├── topics │ │ ├── _hidden_notes.html.erb │ │ ├── _new_ticket.html.erb │ │ ├── _post.html.erb │ │ ├── _stat_box.html.erb │ │ ├── _ticket.html.erb │ │ ├── _ticket_nav_dropdown.html.erb │ │ ├── _ticket_stats.html.erb │ │ ├── _tickets.html.erb │ │ ├── _topic.html.erb │ │ ├── _topic_options.html.erb │ │ ├── index.html.erb │ │ ├── index.js.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ ├── shortcuts.html.erb │ │ ├── show.html.erb │ │ ├── show.js.erb │ │ └── update_ticket.js.erb │ └── users │ │ ├── _edit.html.erb │ │ ├── _invite.html.erb │ │ ├── _user.html.erb │ │ ├── _user_info.html.erb │ │ ├── _user_info_horizontal.html.erb │ │ ├── _users.html.erb │ │ ├── edit.html.erb │ │ ├── edit.js.erb │ │ ├── index.html.erb │ │ ├── invite.html.erb │ │ ├── show.html.erb │ │ ├── show.js.erb │ │ ├── user.html.erb │ │ ├── users.html.erb │ │ └── users.js.erb │ ├── categories │ ├── _left_nav.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── invitations │ │ └── edit.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── invitation_instructions.fa.html.erb │ │ ├── invitation_instructions.html.erb │ │ ├── reset_password_instructions.fa.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── docs │ ├── _comment.html.erb │ ├── _comment_form.html.erb │ ├── _doc.html.erb │ └── show.html.erb │ ├── errors │ ├── internal_server_error.html.erb │ └── not_found.html.erb │ ├── forums │ ├── _forum.html.erb │ └── index.html.erb │ ├── home │ ├── _team_member.html.erb │ └── index.html.erb │ ├── kaminari │ ├── _first_page.html.erb │ ├── _gap.html.erb │ ├── _last_page.html.erb │ ├── _next_page.html.erb │ ├── _page.html.erb │ ├── _paginator.html.erb │ └── _prev_page.html.erb │ ├── layouts │ ├── _above_header.html.erb │ ├── _admin_header.html.erb │ ├── _contact_support.html.erb │ ├── _did_this_help.html.erb │ ├── _footer.html.erb │ ├── _google_analytics.html.erb │ ├── _head.html.erb │ ├── _header.html.erb │ ├── _internal_knowledgebase_page_title.html.erb │ ├── _login.html.erb │ ├── _page_title.html.erb │ ├── admin-plain.html.erb │ ├── admin-settings.html.erb │ ├── admin.html.erb │ ├── application.html.erb │ ├── bootstrap_test.html.erb │ ├── clean.html.erb │ ├── devise.html.erb │ ├── errors.html.erb │ ├── mailer.html.erb │ ├── onboard.html.erb │ └── widget.html.erb │ ├── locales │ └── select.html.erb │ ├── notification_mailer │ ├── new_private.html.erb │ ├── new_private.text.erb │ ├── new_public.html.erb │ ├── new_public.text.erb │ ├── new_reply.html.erb │ └── new_reply.text.erb │ ├── post_mailer │ ├── new_post.html.erb │ └── new_post.text.erb │ ├── posts │ ├── _attachment.html.erb │ ├── _flag.html.erb │ ├── _post.html.erb │ ├── _thumbnail.html.erb │ ├── create.js.erb │ ├── index.html.erb │ └── up_vote.js.erb │ ├── result │ ├── _results_found.html.erb │ ├── _search_form.html.erb │ ├── _search_results.html.erb │ ├── index.html.erb │ └── index.js │ ├── shared │ └── _error_messages.html.erb │ ├── topic_mailer │ ├── new_ticket.html.erb │ └── new_ticket.text.erb │ ├── topics │ ├── _grid.html.erb │ ├── _qna.html.erb │ ├── _ticket.html.erb │ ├── _topic.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── tag.html.erb │ ├── thanks.html.erb │ ├── ticket.html.erb │ ├── tickets.html.erb │ └── up_vote.js.erb │ ├── user_mailer │ ├── new_user.html.erb │ └── new_user.text.erb │ ├── users │ └── finish_signup.html.erb │ └── widget │ └── topics │ ├── new.html.erb │ └── thanks.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── bower.json ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── cloudinary.sample.yml ├── database.do.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── acts_as_taggable_on.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── client_side_validations.rb │ ├── config.rb │ ├── cookies_serializer.rb │ ├── default_settings.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── griddler.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── pg_search.rb │ ├── route_translator.rb │ ├── sentence_case.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── sucker_punch.rb │ ├── swagger.rb │ └── wrap_parameters.rb ├── locales │ ├── ca.yml │ ├── de.yml │ ├── devise │ │ ├── ar.yml │ │ ├── az.yml │ │ ├── bg.yml │ │ ├── bn.yml │ │ ├── bs.yml │ │ ├── ca.yml │ │ ├── cs.yml │ │ ├── da.yml │ │ ├── de.yml │ │ ├── el.yml │ │ ├── en-GB.yml │ │ ├── en.yml │ │ ├── es-MX.yml │ │ ├── es.yml │ │ ├── et.yml │ │ ├── fa.yml │ │ ├── fi.yml │ │ ├── fr.yml │ │ ├── he.yml │ │ ├── hr.yml │ │ ├── hu.yml │ │ ├── id.yml │ │ ├── is.yml │ │ ├── it.yml │ │ ├── ja.yml │ │ ├── ko.yml │ │ ├── lt.yml │ │ ├── lv.yml │ │ ├── my.yml │ │ ├── nb.yml │ │ ├── nl.yml │ │ ├── no.yml │ │ ├── pl.yml │ │ ├── pt-BR.yml │ │ ├── pt.yml │ │ ├── ro.yml │ │ ├── ru.yml │ │ ├── sk.yml │ │ ├── sl.yml │ │ ├── sr-RS.yml │ │ ├── sr.yml │ │ ├── sv.yml │ │ ├── th.yml │ │ ├── tr.yml │ │ ├── uk.yml │ │ ├── vi.yml │ │ ├── zh-CN.yml │ │ ├── zh-HK.yml │ │ └── zh-TW.yml │ ├── devise_invitable │ │ ├── devise_invitable.ar.yml │ │ ├── devise_invitable.da.yml │ │ ├── devise_invitable.de.yml │ │ ├── devise_invitable.en.yml │ │ ├── devise_invitable.es.yml │ │ ├── devise_invitable.et.yml │ │ ├── devise_invitable.fa.yml │ │ ├── devise_invitable.fr.yml │ │ ├── devise_invitable.it.yml │ │ ├── devise_invitable.ja.yml │ │ ├── devise_invitable.ko.yml │ │ ├── devise_invitable.nl.yml │ │ ├── devise_invitable.no.yml │ │ ├── devise_invitable.pl.yml │ │ ├── devise_invitable.pt-BR.yml │ │ ├── devise_invitable.pt.yml │ │ ├── devise_invitable.ru.yml │ │ ├── devise_invitable.tr.yml │ │ ├── devise_invitable.ua.yml │ │ └── devise_invitable.vi.yml │ ├── en.yml │ ├── es.yml │ ├── et.yml │ ├── fa.yml │ ├── fr.yml │ ├── hi.yml │ ├── hu.yml │ ├── it.yml │ ├── ja.yml │ ├── languages │ │ ├── i18n_languages.af.yml │ │ ├── i18n_languages.ar.yml │ │ ├── i18n_languages.az.yml │ │ ├── i18n_languages.be.yml │ │ ├── i18n_languages.bg.yml │ │ ├── i18n_languages.bn.yml │ │ ├── i18n_languages.bs.yml │ │ ├── i18n_languages.ca.yml │ │ ├── i18n_languages.cs.yml │ │ ├── i18n_languages.cy.yml │ │ ├── i18n_languages.da.yml │ │ ├── i18n_languages.de.yml │ │ ├── i18n_languages.el.yml │ │ ├── i18n_languages.en.yml │ │ ├── i18n_languages.eo.yml │ │ ├── i18n_languages.es.yml │ │ ├── i18n_languages.et.yml │ │ ├── i18n_languages.eu.yml │ │ ├── i18n_languages.fa.yml │ │ ├── i18n_languages.fi.yml │ │ ├── i18n_languages.fr.yml │ │ ├── i18n_languages.ga.yml │ │ ├── i18n_languages.gl.yml │ │ ├── i18n_languages.gu.yml │ │ ├── i18n_languages.ha.yml │ │ ├── i18n_languages.hi.yml │ │ ├── i18n_languages.hr.yml │ │ ├── i18n_languages.hu.yml │ │ ├── i18n_languages.hy.yml │ │ ├── i18n_languages.id.yml │ │ ├── i18n_languages.ig.yml │ │ ├── i18n_languages.is.yml │ │ ├── i18n_languages.it.yml │ │ ├── i18n_languages.ja.yml │ │ ├── i18n_languages.ka.yml │ │ ├── i18n_languages.kk.yml │ │ ├── i18n_languages.km.yml │ │ ├── i18n_languages.kn.yml │ │ ├── i18n_languages.ko.yml │ │ ├── i18n_languages.lo.yml │ │ ├── i18n_languages.lt.yml │ │ ├── i18n_languages.lv.yml │ │ ├── i18n_languages.mg.yml │ │ ├── i18n_languages.mk.yml │ │ ├── i18n_languages.ml.yml │ │ ├── i18n_languages.mn.yml │ │ ├── i18n_languages.mr.yml │ │ ├── i18n_languages.ms.yml │ │ ├── i18n_languages.mt.yml │ │ ├── i18n_languages.my.yml │ │ ├── i18n_languages.ne.yml │ │ ├── i18n_languages.nl.yml │ │ ├── i18n_languages.pa.yml │ │ ├── i18n_languages.pl.yml │ │ ├── i18n_languages.pt-BR.yml │ │ ├── i18n_languages.pt.yml │ │ ├── i18n_languages.ro.yml │ │ ├── i18n_languages.ru.yml │ │ ├── i18n_languages.si.yml │ │ ├── i18n_languages.sk.yml │ │ ├── i18n_languages.sl.yml │ │ ├── i18n_languages.so.yml │ │ ├── i18n_languages.sq.yml │ │ ├── i18n_languages.sr.yml │ │ ├── i18n_languages.sv.yml │ │ ├── i18n_languages.sw.yml │ │ ├── i18n_languages.ta.yml │ │ ├── i18n_languages.te.yml │ │ ├── i18n_languages.th.yml │ │ ├── i18n_languages.tr.yml │ │ ├── i18n_languages.uk.yml │ │ ├── i18n_languages.ur.yml │ │ ├── i18n_languages.uz.yml │ │ ├── i18n_languages.vi.yml │ │ ├── i18n_languages.yi.yml │ │ ├── i18n_languages.yo.yml │ │ ├── i18n_languages.zh.yml │ │ └── i18n_languages.zu.yml │ ├── nl.yml │ ├── oauth │ │ ├── i18n_omniauth_buttons.ca.yml │ │ ├── i18n_omniauth_buttons.en.yml │ │ ├── i18n_omniauth_buttons.es.yml │ │ ├── i18n_omniauth_buttons.fa.yml │ │ ├── i18n_omniauth_buttons.fr.yml │ │ ├── i18n_omniauth_buttons.ja.yml │ │ ├── i18n_omniauth_buttons.pt_BR.yml │ │ ├── i18n_omniauth_buttons.ru.yml │ │ ├── i18n_omniauth_buttons.zh_CN.yml │ │ └── i18n_omniauth_buttons.zh_TW.yml │ ├── pt.yml │ ├── pt_BR.yml │ ├── ru.yml │ ├── simple_form.en.yml │ ├── sv.yml │ ├── tr.yml │ ├── translating.md │ ├── zh_CN.yml │ └── zh_TW.yml ├── newrelic.yml ├── routes.rb ├── secrets.yml ├── settings.yml ├── settings │ ├── development.yml │ ├── production.yml │ └── test.yml └── unicorn.rb ├── db ├── migrate │ ├── 20150313175511_create_categories.rb │ ├── 20150313180615_create_docs.rb │ ├── 20150313180748_create_forums.rb │ ├── 20150313180829_create_posts.rb │ ├── 20150313181022_create_topics.rb │ ├── 20150313181524_create_votes.rb │ ├── 20150313181700_create_users.rb │ ├── 20150313183850_add_devise_to_users.rb │ ├── 20150314002610_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb │ ├── 20150314002611_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20150314002612_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20150314002613_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20150314002614_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ ├── 20150320171334_create_searches.rb │ ├── 20150320203432_create_pg_search_documents.rb │ ├── 20150414210945_create_versions.rb │ ├── 20150722031136_add_voting_toggles_to_forums.rb │ ├── 20150726192908_create_attachinary_tables.attachinary.rb │ ├── 20151027034830_translate_docs.rb │ ├── 20151107185413_add_locale_to_versions.rb │ ├── 20151126032907_add_columns_to_users.rb │ ├── 20160222043130_add_lang_to_topics.rb │ ├── 20160310044144_add_doc_id_to_topic.rb │ ├── 20160330152420_create_settings.rb │ ├── 20160518134813_convert_admin_to_admin.rb │ ├── 20160619160937_create_api_keys.rb │ ├── 20160627171450_devise_invitable_add_to_users.rb │ ├── 20160709052116_add_column_invitation_message_to_users.rb │ ├── 20160814221258_add_timezone_to_user.rb │ ├── 20161001090839_create_flags.rb │ ├── 20161011213000_add_attachments.rb │ ├── 20161017170305_create_images.rb │ ├── 20161027135234_add_notifications_to_user.rb │ ├── 20161028211434_add_cc_to_post.rb │ ├── 20161030210752_add_raw_to_posts.rb │ ├── 20161116233432_add_channel_to_topics.rb │ ├── 20161204162759_add_account_number_to_users.rb │ ├── 20170120154323_add_to_users.rb │ ├── 20170121155626_add_columns_to_tag.rb │ ├── 20170127010804_add_public_to_categories.rb │ ├── 20170128182239_add_kind_to_topics.rb │ └── 20170302162152_add_fields_to_tag.rb ├── schema.rb └── seeds.rb ├── docs └── SETUP.md ├── lib ├── assets │ └── .keep ├── devise │ └── custom_failure.rb ├── email_processor.rb ├── generators │ └── theme │ │ ├── USAGE │ │ ├── templates │ │ ├── about.markdown │ │ ├── all.css │ │ ├── all.js │ │ └── layout.html.erb │ │ └── theme_generator.rb ├── sentence_case │ └── sentence_case.rb ├── tasks │ ├── .keep │ ├── add_tickets.rake │ ├── load.rake │ └── populate.rake └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── log └── .keep ├── public ├── .DS_Store ├── 422.html ├── favicon.ico ├── parent-redirect.html └── robots.txt ├── test ├── controllers │ ├── .keep │ ├── admin │ │ ├── api_keys_controller_test.rb │ │ ├── categories_controller_test.rb │ │ ├── docs_controller_test.rb │ │ ├── forums_controller_test.rb │ │ ├── groups_controller_test.rb │ │ ├── images_controller_test.rb │ │ ├── internal_categories_controller_test.rb │ │ ├── internal_docs_controller_test.rb │ │ ├── onboarding_controller_test.rb │ │ ├── posts_controller_test.rb │ │ ├── search_controller_test.rb │ │ ├── settings_controller_test.rb │ │ ├── shared_controller_test.rb │ │ ├── topics_controller_test.rb │ │ └── users_controller_test.rb │ ├── admin_controller_test.rb │ ├── api │ │ └── v1 │ │ │ ├── categories_test.rb │ │ │ ├── docs_test.rb │ │ │ ├── flags_test.rb │ │ │ ├── forums_test.rb │ │ │ ├── posts_test.rb │ │ │ ├── search_test.rb │ │ │ ├── settings_test.rb │ │ │ ├── topics_test.rb │ │ │ └── users_test.rb │ ├── categories_controller_test.rb │ ├── comments_controller_test.rb │ ├── docs_controller_test.rb │ ├── errors_controller_test.rb │ ├── flags_controller_test.rb │ ├── forums_controller_test.rb │ ├── home_controller_test.rb │ ├── locales_controller_test.rb │ ├── posts_controller_test.rb │ ├── registrations_controller_test.rb │ ├── result_controller_test.rb │ ├── topics_controller_test.rb │ ├── users_controller_test.rb │ ├── webhook │ │ └── inbound_controller_test.rb │ └── widget │ │ └── topics_controller_test.rb ├── factories.rb ├── fixtures │ ├── api_keys.yml │ ├── categories.yml │ ├── category_translations.yml │ ├── doc_translations.yml │ ├── docs.yml │ ├── files │ │ └── logo.png │ ├── flags.yml │ ├── forums.yml │ ├── images.yml │ ├── logo.png │ ├── posts.yml │ ├── test.odt │ ├── topic_mailer │ │ ├── new_ticket.nl.txt │ │ └── new_ticket.txt │ ├── topics.yml │ ├── users.yml │ └── votes.yml ├── helpers │ └── .keep ├── integration │ ├── .keep │ ├── admin_settings_flows_test.rb │ ├── browsing_user_doc_flows_test.rb │ ├── browsing_user_ticket_flows_test.rb │ ├── forum_voting_test.rb │ ├── search_flows_test.rb │ ├── sign_in_flow_test.rb │ ├── signed_in_user_doc_flows_test.rb │ └── signed_in_user_ticket_flows_test.rb ├── integration_test_helper.rb ├── jobs │ └── tracker_job_test.rb ├── lib │ └── email_processor_test.rb ├── mailers │ ├── notification_mailer_test.rb │ ├── post_mailer_test.rb │ ├── previews │ │ ├── post_mailer_preview.rb │ │ └── topic_mailer_preview.rb │ └── user_mailer_test.rb ├── models │ ├── .keep │ ├── api_key_test.rb │ ├── category_test.rb │ ├── doc_test.rb │ ├── flag_test.rb │ ├── forum_test.rb │ ├── image_test.rb │ ├── post_test.rb │ ├── topic_test.rb │ ├── user_test.rb │ └── vote_test.rb └── test_helper.rb └── vendor └── assets ├── Bootstrap-icon-picker ├── .bower.json ├── README.md ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── icon-picker.css │ └── icon-picker.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html └── js │ ├── iconPicker.js │ └── iconPicker.min.js ├── components ├── animate.css │ ├── .bower.json │ ├── Gruntfile.js │ ├── animate-config.json │ ├── animate.css │ ├── animate.min.css │ ├── bower.json │ ├── package.json │ └── source │ │ ├── _base.css │ │ ├── attention_seekers │ │ ├── bounce.css │ │ ├── flash.css │ │ ├── jello.css │ │ ├── pulse.css │ │ ├── rubberBand.css │ │ ├── shake.css │ │ ├── swing.css │ │ ├── tada.css │ │ └── wobble.css │ │ ├── bouncing_entrances │ │ ├── bounceIn.css │ │ ├── bounceInDown.css │ │ ├── bounceInLeft.css │ │ ├── bounceInRight.css │ │ └── bounceInUp.css │ │ ├── bouncing_exits │ │ ├── bounceOut.css │ │ ├── bounceOutDown.css │ │ ├── bounceOutLeft.css │ │ ├── bounceOutRight.css │ │ └── bounceOutUp.css │ │ ├── fading_entrances │ │ ├── fadeIn.css │ │ ├── fadeInDown.css │ │ ├── fadeInDownBig.css │ │ ├── fadeInLeft.css │ │ ├── fadeInLeftBig.css │ │ ├── fadeInRight.css │ │ ├── fadeInRightBig.css │ │ ├── fadeInUp.css │ │ └── fadeInUpBig.css │ │ ├── fading_exits │ │ ├── fadeOut.css │ │ ├── fadeOutDown.css │ │ ├── fadeOutDownBig.css │ │ ├── fadeOutLeft.css │ │ ├── fadeOutLeftBig.css │ │ ├── fadeOutRight.css │ │ ├── fadeOutRightBig.css │ │ ├── fadeOutUp.css │ │ └── fadeOutUpBig.css │ │ ├── flippers │ │ ├── flip.css │ │ ├── flipInX.css │ │ ├── flipInY.css │ │ ├── flipOutX.css │ │ └── flipOutY.css │ │ ├── lightspeed │ │ ├── lightSpeedIn.css │ │ └── lightSpeedOut.css │ │ ├── rotating_entrances │ │ ├── rotateIn.css │ │ ├── rotateInDownLeft.css │ │ ├── rotateInDownRight.css │ │ ├── rotateInUpLeft.css │ │ └── rotateInUpRight.css │ │ ├── rotating_exits │ │ ├── rotateOut.css │ │ ├── rotateOutDownLeft.css │ │ ├── rotateOutDownRight.css │ │ ├── rotateOutUpLeft.css │ │ └── rotateOutUpRight.css │ │ ├── sliding_entrances │ │ ├── slideInDown.css │ │ ├── slideInLeft.css │ │ ├── slideInRight.css │ │ └── slideInUp.css │ │ ├── sliding_exits │ │ ├── slideOutDown.css │ │ ├── slideOutLeft.css │ │ ├── slideOutRight.css │ │ └── slideOutUp.css │ │ ├── specials │ │ ├── hinge.css │ │ ├── rollIn.css │ │ └── rollOut.css │ │ ├── zooming_entrances │ │ ├── zoomIn.css │ │ ├── zoomInDown.css │ │ ├── zoomInLeft.css │ │ ├── zoomInRight.css │ │ └── zoomInUp.css │ │ └── zooming_exits │ │ ├── zoomOut.css │ │ ├── zoomOutDown.css │ │ ├── zoomOutLeft.css │ │ ├── zoomOutRight.css │ │ └── zoomOutUp.css ├── autolink │ ├── .bower.json │ ├── autolink-min.js │ └── bower.json ├── blueimp-canvas-to-blob │ ├── .bower.json │ ├── bower.json │ └── js │ │ ├── canvas-to-blob.js │ │ └── canvas-to-blob.min.js ├── blueimp-file-upload │ ├── .bower.json │ ├── bower.json │ ├── css │ │ ├── jquery.fileupload-noscript.css │ │ ├── jquery.fileupload-ui-noscript.css │ │ ├── jquery.fileupload-ui.css │ │ └── jquery.fileupload.css │ ├── img │ │ ├── loading.gif │ │ └── progressbar.gif │ └── js │ │ ├── cors │ │ ├── jquery.postmessage-transport.js │ │ └── jquery.xdr-transport.js │ │ ├── jquery.fileupload-angular.js │ │ ├── jquery.fileupload-audio.js │ │ ├── jquery.fileupload-image.js │ │ ├── jquery.fileupload-jquery-ui.js │ │ ├── jquery.fileupload-process.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload-validate.js │ │ ├── jquery.fileupload-video.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ └── vendor │ │ └── jquery.ui.widget.js ├── blueimp-load-image │ ├── .bower.json │ ├── bower.json │ └── js │ │ ├── load-image-exif-map.js │ │ ├── load-image-exif.js │ │ ├── load-image-ios.js │ │ ├── load-image-meta.js │ │ ├── load-image-orientation.js │ │ ├── load-image.all.min.js │ │ └── load-image.js ├── blueimp-tmpl │ ├── .bower.json │ ├── bower.json │ └── js │ │ ├── compile.js │ │ ├── runtime.js │ │ ├── tmpl.js │ │ └── tmpl.min.js ├── bootstrap-icon-chooser │ ├── .bower.json │ ├── README.md │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── icon-picker.css │ │ └── icon-picker.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── index.html │ └── js │ │ ├── iconPicker.js │ │ └── iconPicker.min.js ├── bootstrap-social │ ├── .bower.json │ ├── .editorconfig │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── bootstrap-social.css │ ├── bootstrap-social.less │ ├── bootstrap-social.scss │ ├── bower.json │ └── package.json ├── cloudinary_js │ ├── .bower.json │ ├── bower.json │ ├── html │ │ └── cloudinary_cors.html │ ├── js │ │ ├── canvas-to-blob.min.js │ │ ├── jquery.cloudinary.js │ │ └── load-image.min.js │ └── samples │ │ └── bootstrap.html ├── flare │ ├── .bower.json │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── flare.js │ │ └── flare.min.js │ ├── gulpfile.js │ ├── package.json │ └── src │ │ └── flare.js ├── initial.js │ ├── .bower.json │ ├── .gitignore │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ └── initial.min.js │ ├── initial.js │ └── package.json ├── js-cookie │ ├── .bower.json │ ├── CONTRIBUTING.md │ ├── MIT-LICENSE.txt │ ├── README.md │ ├── SERVER_SIDE.md │ ├── bower.json │ └── src │ │ └── js.cookie.js ├── magnific-popup │ ├── .bower.json │ ├── .gitignore │ ├── .jshintrc │ ├── .travis.yml │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── dist │ │ ├── jquery.magnific-popup.js │ │ ├── jquery.magnific-popup.min.js │ │ └── magnific-popup.css │ ├── magnific-popup.jquery.json │ ├── package.json │ └── src │ │ ├── css │ │ ├── _settings.scss │ │ └── main.scss │ │ └── js │ │ ├── ajax.js │ │ ├── core.js │ │ ├── fastclick.js │ │ ├── gallery.js │ │ ├── iframe.js │ │ ├── image.js │ │ ├── inline.js │ │ ├── retina.js │ │ └── zoom.js ├── pick-a-color │ ├── .bower.json │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── build │ │ ├── 1.0.0 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ └── pick-a-color-1.0.0.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.0.0.min.js │ │ │ │ ├── pick-a-color-1.0.0.min.min.js │ │ │ │ └── tinycolor-0.9.12.min.js │ │ │ └── sample.html │ │ ├── 1.1.0 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ └── pick-a-color-1.1.0.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.1.0.min.js │ │ │ │ └── tinycolor-0.9.14.min.js │ │ │ └── sample.html │ │ ├── 1.1.1 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ ├── pick-a-color-1.1.1.css │ │ │ │ └── pick-a-color-1.1.1.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.1.1.js │ │ │ │ ├── pick-a-color-1.1.1.min.js │ │ │ │ └── tinycolor-0.9.14.min.js │ │ │ └── sample.html │ │ ├── 1.1.2 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ ├── pick-a-color-1.1.2.css │ │ │ │ └── pick-a-color-1.1.2.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.1.2.js │ │ │ │ ├── pick-a-color-1.1.2.min.js │ │ │ │ └── tinycolor-0.9.14.min.js │ │ │ └── sample.html │ │ ├── 1.1.3 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ ├── pick-a-color-1.1.3.css │ │ │ │ └── pick-a-color-1.1.3.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.1.3.js │ │ │ │ ├── pick-a-color-1.1.3.min.js │ │ │ │ └── tinycolor-0.9.14.min.js │ │ │ └── sample.html │ │ ├── 1.1.4 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ ├── pick-a-color-1.1.4.css │ │ │ │ └── pick-a-color-1.1.4.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.1.4.js │ │ │ │ ├── pick-a-color-1.1.4.min.js │ │ │ │ └── tinycolor-0.9.14.min.js │ │ │ └── sample.html │ │ ├── 1.1.5 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ ├── pick-a-color-1.1.3.css │ │ │ │ ├── pick-a-color-1.1.5.css │ │ │ │ └── pick-a-color-1.1.5.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.1.5.js │ │ │ │ ├── pick-a-color-1.1.5.min.js │ │ │ │ └── tinycolor-0.9.14.min.js │ │ │ └── sample.html │ │ ├── 1.1.6 │ │ │ ├── css │ │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ │ └── pick-a-color-1.1.6.min.css │ │ │ ├── js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── pick-a-color-1.1.6.min.js │ │ │ │ └── tinycolor-0.9.14.min.js │ │ │ └── sample.html │ │ ├── 1.1.7 │ │ │ ├── css │ │ │ │ └── pick-a-color-1.1.7.min.css │ │ │ ├── js │ │ │ │ └── pick-a-color-1.1.7.min.js │ │ │ └── sample.html │ │ ├── 1.1.8 │ │ │ ├── css │ │ │ │ └── pick-a-color-1.1.8.min.css │ │ │ ├── js │ │ │ │ └── pick-a-color-1.1.8.min.js │ │ │ └── sample.html │ │ ├── 1.2.0 │ │ │ ├── css │ │ │ │ └── pick-a-color-1.2.0.min.css │ │ │ ├── js │ │ │ │ └── pick-a-color-1.2.0.min.js │ │ │ └── sample.html │ │ ├── 1.2.2 │ │ │ ├── css │ │ │ │ └── pick-a-color-1.2.2.min.css │ │ │ ├── js │ │ │ │ └── pick-a-color-1.2.2.min.js │ │ │ └── sample.html │ │ ├── 1.2.3 │ │ │ ├── css │ │ │ │ └── pick-a-color-1.2.3.min.css │ │ │ ├── js │ │ │ │ └── pick-a-color-1.2.3.min.js │ │ │ └── sample.html │ │ └── dependencies │ │ │ ├── bootstrap-2.2.2.min.css │ │ │ ├── bootstrap-3.0.0.min.css │ │ │ ├── jquery-1.9.1.min.js │ │ │ └── tinycolor-0.9.15.min.js │ ├── package.json │ ├── pick-a-color.jquery.json │ ├── sample.html │ └── src │ │ ├── js │ │ └── pick-a-color.js │ │ └── less │ │ ├── bootstrap-src │ │ ├── mixins.less │ │ └── variables.less │ │ └── pick-a-color.less ├── quill │ ├── .bower.json │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── quill.base.css │ │ ├── quill.js │ │ ├── quill.min.js │ │ └── quill.snow.css │ └── docs │ │ └── style-guide.md ├── slideout.js │ ├── .bower.json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── slideout.js │ │ └── slideout.min.js │ ├── index.css │ └── index.js └── tinycolor │ ├── .bower.json │ ├── .gitignore │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── component.json │ ├── demo │ ├── demo.css │ ├── jquery-1.6.1.js │ └── jquery-1.9.1.js │ ├── dist │ └── tinycolor-min.js │ ├── docs │ ├── docco.css │ └── tinycolor.html │ ├── index.html │ ├── package.json │ ├── test │ ├── allhex.txt │ ├── allhex_shorthand.txt │ ├── convertWikipediaColors.html │ ├── hexgen.js │ ├── index.html │ ├── qunit.css │ ├── qunit.js │ └── test.js │ └── tinycolor.js ├── javascripts ├── .keep ├── jquery.fileupload.js ├── jquery.iframe-transport.js ├── jquery.ui.widget.js └── mousetrap.min.js └── stylesheets └── .keep /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.bowerrc -------------------------------------------------------------------------------- /.byebug_history: -------------------------------------------------------------------------------- 1 | exit 2 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.hound.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.scss-lint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HEROKU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/HEROKU.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/14369.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/14369.jpg -------------------------------------------------------------------------------- /app/assets/images/HelpyBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/HelpyBrowser.png -------------------------------------------------------------------------------- /app/assets/images/cheatsheet-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/cheatsheet-bg.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/helpy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/helpy-logo.png -------------------------------------------------------------------------------- /app/assets/images/helpy-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/helpy-logo.svg -------------------------------------------------------------------------------- /app/assets/images/icons/001_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_01.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_02.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_03.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_04.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_05.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_06.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_07.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_08.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_09.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_10.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_11.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_12.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_13.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_14.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_15.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_16.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_17.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_18.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_19.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_20.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_21.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_22.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_23.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_24.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_25.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_26.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_27.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_28.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_29.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_30.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_31.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_32.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_33.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_34.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_35.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_36.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_37.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_38.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_39.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_40.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_41.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_42.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_43.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_44.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_45.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_46.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_47.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_48.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_49.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_50.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_51.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_52.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_53.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_54.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_55.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_56.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_57.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_58.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_59.png -------------------------------------------------------------------------------- /app/assets/images/icons/001_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/icons/001_60.png -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/mark-editable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/mark-editable.png -------------------------------------------------------------------------------- /app/assets/images/question-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/question-logo.svg -------------------------------------------------------------------------------- /app/assets/images/widgets/tooltip_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/widgets/tooltip_arrow.gif -------------------------------------------------------------------------------- /app/assets/images/widgets/tooltip_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/images/widgets/tooltip_image.gif -------------------------------------------------------------------------------- /app/assets/javascripts/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/api_keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/api_keys.js -------------------------------------------------------------------------------- /app/assets/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/app.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /app/assets/javascripts/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/errors.js -------------------------------------------------------------------------------- /app/assets/javascripts/event-tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/event-tracking.js -------------------------------------------------------------------------------- /app/assets/javascripts/rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/rtl.js -------------------------------------------------------------------------------- /app/assets/javascripts/shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/shortcuts.js -------------------------------------------------------------------------------- /app/assets/javascripts/widget.v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/javascripts/widget.v1.js -------------------------------------------------------------------------------- /app/assets/stylesheets/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/admin.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api_keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/api_keys.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/autocomplete.css -------------------------------------------------------------------------------- /app/assets/stylesheets/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/base.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/bootstrap-overrides.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/categories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/categories.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/comments.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/docs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/errors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/forums.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/forums.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/home.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/locales.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/locales.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/onboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/onboard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/posts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/result.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/result.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/rtl.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/shared.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/topics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/topics.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/widget.v1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/assets/stylesheets/widget.v1.css -------------------------------------------------------------------------------- /app/controllers/admin/api_keys_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/api_keys_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/docs_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/forums_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/forums_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/images_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/images_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/internal_docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/internal_docs_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/onboarding_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/onboarding_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/shared_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/shared_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/topics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/topics_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/base.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/base.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/categories.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/defaults.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/docs.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/flags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/flags.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/forums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/forums.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/posts.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/search.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/settings.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/topics.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/api/v1/users.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/docs_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/flags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/flags_controller.rb -------------------------------------------------------------------------------- /app/controllers/forums_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/forums_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/locales_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/locales_controller.rb -------------------------------------------------------------------------------- /app/controllers/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/omniauth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/omniauth_controller.rb -------------------------------------------------------------------------------- /app/controllers/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/result_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/result_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/topics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/topics_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/webhook/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/webhook/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/webhook/inbound_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/webhook/inbound_controller.rb -------------------------------------------------------------------------------- /app/controllers/widget/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/widget/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/widget/topics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/controllers/widget/topics_controller.rb -------------------------------------------------------------------------------- /app/helpers/admin/internal_categories_helper.rb: -------------------------------------------------------------------------------- 1 | module Admin::InternalCategoriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin/internal_docs_helper.rb: -------------------------------------------------------------------------------- 1 | module Admin::InternalDocsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin/reports_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/admin/reports_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/admin_helper.rb -------------------------------------------------------------------------------- /app/helpers/api_keys_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/api_keys_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/categories_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/categories_helper.rb -------------------------------------------------------------------------------- /app/helpers/comments_helper.rb: -------------------------------------------------------------------------------- 1 | module CommentsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/docs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/docs_helper.rb -------------------------------------------------------------------------------- /app/helpers/errors_helper.rb: -------------------------------------------------------------------------------- 1 | module ErrorsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/forums_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/forums_helper.rb -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/images_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/images_helper.rb -------------------------------------------------------------------------------- /app/helpers/locales_helper.rb: -------------------------------------------------------------------------------- 1 | module LocalesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/posts_helper.rb -------------------------------------------------------------------------------- /app/helpers/result_helper.rb: -------------------------------------------------------------------------------- 1 | module ResultHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/stats_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/stats_helper.rb -------------------------------------------------------------------------------- /app/helpers/topics_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/topics_helper.rb -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/jobs/tracker_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/jobs/tracker_job.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/devise_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/mailers/devise_mailer.rb -------------------------------------------------------------------------------- /app/mailers/notification_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/mailers/notification_mailer.rb -------------------------------------------------------------------------------- /app/mailers/post_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/mailers/post_mailer.rb -------------------------------------------------------------------------------- /app/mailers/topic_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/mailers/topic_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/api_key.rb -------------------------------------------------------------------------------- /app/models/app_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/app_settings.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/sentence_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/concerns/sentence_case.rb -------------------------------------------------------------------------------- /app/models/doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/doc.rb -------------------------------------------------------------------------------- /app/models/entity/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/base.rb -------------------------------------------------------------------------------- /app/models/entity/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/category.rb -------------------------------------------------------------------------------- /app/models/entity/doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/doc.rb -------------------------------------------------------------------------------- /app/models/entity/flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/flag.rb -------------------------------------------------------------------------------- /app/models/entity/forum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/forum.rb -------------------------------------------------------------------------------- /app/models/entity/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/post.rb -------------------------------------------------------------------------------- /app/models/entity/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/search.rb -------------------------------------------------------------------------------- /app/models/entity/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/topic.rb -------------------------------------------------------------------------------- /app/models/entity/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/entity/user.rb -------------------------------------------------------------------------------- /app/models/flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/flag.rb -------------------------------------------------------------------------------- /app/models/forum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/forum.rb -------------------------------------------------------------------------------- /app/models/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/image.rb -------------------------------------------------------------------------------- /app/models/logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/logo.rb -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/models/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/theme.rb -------------------------------------------------------------------------------- /app/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/topic.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/models/vote.rb -------------------------------------------------------------------------------- /app/themes/flat/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/about.markdown -------------------------------------------------------------------------------- /app/themes/flat/assets/images/flat/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/themes/flat/assets/javascripts/flat/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/assets/javascripts/flat/all.js -------------------------------------------------------------------------------- /app/themes/flat/assets/javascripts/flat/menu.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/themes/flat/assets/javascripts/flat/sidr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/assets/javascripts/flat/sidr.js -------------------------------------------------------------------------------- /app/themes/flat/assets/stylesheets/flat/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/assets/stylesheets/flat/all.scss -------------------------------------------------------------------------------- /app/themes/flat/assets/stylesheets/flat/flat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/assets/stylesheets/flat/flat.scss -------------------------------------------------------------------------------- /app/themes/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/flat.png -------------------------------------------------------------------------------- /app/themes/flat/locales/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/themes/flat/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/locales/en.yml -------------------------------------------------------------------------------- /app/themes/flat/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/themes/flat/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/themes/flat/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/home/index.html.erb -------------------------------------------------------------------------------- /app/themes/flat/views/layouts/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/layouts/_head.html.erb -------------------------------------------------------------------------------- /app/themes/flat/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/themes/flat/views/layouts/_page_title.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/layouts/_page_title.html.erb -------------------------------------------------------------------------------- /app/themes/flat/views/layouts/clean.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/layouts/clean.html.erb -------------------------------------------------------------------------------- /app/themes/flat/views/layouts/flat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/flat/views/layouts/flat.html.erb -------------------------------------------------------------------------------- /app/themes/helpy/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/helpy/about.markdown -------------------------------------------------------------------------------- /app/themes/helpy/assets/images/helpy/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/themes/helpy/assets/javascripts/helpy/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/helpy/assets/javascripts/helpy/all.js -------------------------------------------------------------------------------- /app/themes/helpy/assets/stylesheets/helpy/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/helpy/assets/stylesheets/helpy/all.css -------------------------------------------------------------------------------- /app/themes/helpy/helpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/helpy/helpy.png -------------------------------------------------------------------------------- /app/themes/helpy/locales/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/themes/helpy/views/layouts/devise.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/helpy/views/layouts/devise.html.erb -------------------------------------------------------------------------------- /app/themes/helpy/views/layouts/helpy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/helpy/views/layouts/helpy.html.erb -------------------------------------------------------------------------------- /app/themes/light/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/about.markdown -------------------------------------------------------------------------------- /app/themes/light/assets/images/light/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/themes/light/assets/javascripts/light/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/assets/javascripts/light/all.js -------------------------------------------------------------------------------- /app/themes/light/assets/javascripts/light/menu.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/themes/light/assets/javascripts/light/sidr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/assets/javascripts/light/sidr.js -------------------------------------------------------------------------------- /app/themes/light/assets/stylesheets/light/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/assets/stylesheets/light/all.scss -------------------------------------------------------------------------------- /app/themes/light/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/light.png -------------------------------------------------------------------------------- /app/themes/light/locales/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/themes/light/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/themes/light/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/views/home/index.html.erb -------------------------------------------------------------------------------- /app/themes/light/views/layouts/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/views/layouts/_head.html.erb -------------------------------------------------------------------------------- /app/themes/light/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/themes/light/views/layouts/clean.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/views/layouts/clean.html.erb -------------------------------------------------------------------------------- /app/themes/light/views/layouts/light.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/themes/light/views/layouts/light.html.erb -------------------------------------------------------------------------------- /app/uploaders/attachment_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/uploaders/attachment_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/uploaders/image_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/logo_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/uploaders/logo_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/profile_image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/uploaders/profile_image_uploader.rb -------------------------------------------------------------------------------- /app/views/admin/api_keys/_api_key.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/api_keys/_api_key.html.erb -------------------------------------------------------------------------------- /app/views/admin/api_keys/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/api_keys/create.js.erb -------------------------------------------------------------------------------- /app/views/admin/api_keys/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/api_keys/destroy.js.erb -------------------------------------------------------------------------------- /app/views/admin/api_keys/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/api_keys/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/_cat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/_cat.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/_doc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/_doc.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/destroy.js.erb -------------------------------------------------------------------------------- /app/views/admin/categories/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/update.js.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/docs/_attachment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/docs/_attachment.html.erb -------------------------------------------------------------------------------- /app/views/admin/docs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/docs/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/docs/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/docs/destroy.js.erb -------------------------------------------------------------------------------- /app/views/admin/docs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/docs/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/docs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/docs/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/forums/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/forums/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/forums/_forum.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/forums/_forum.html.erb -------------------------------------------------------------------------------- /app/views/admin/forums/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/forums/destroy.js.erb -------------------------------------------------------------------------------- /app/views/admin/forums/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/forums/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/forums/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/forums/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/forums/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/forums/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/groups/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/_group.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/groups/_group.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/groups/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/groups/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/groups/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/groups/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/internal_categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/internal_categories/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/internal_categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/internal_categories/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/internal_docs/_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/internal_docs/_comment.html.erb -------------------------------------------------------------------------------- /app/views/admin/internal_docs/_doc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/internal_docs/_doc.html.erb -------------------------------------------------------------------------------- /app/views/admin/internal_docs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/internal_docs/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/onboarding/complete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/onboarding/complete.html.erb -------------------------------------------------------------------------------- /app/views/admin/onboarding/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/onboarding/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/_edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts/_new_user_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/_new_user_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts/_user_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/_user_search.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts/cancel.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/cancel.js.erb -------------------------------------------------------------------------------- /app/views/admin/posts/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/create.js.erb -------------------------------------------------------------------------------- /app/views/admin/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/posts/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/edit.js.erb -------------------------------------------------------------------------------- /app/views/admin/posts/new_user.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/new_user.js.erb -------------------------------------------------------------------------------- /app/views/admin/posts/raw.html.erb: -------------------------------------------------------------------------------- 1 | <%= simple_format @post.raw_email %> 2 | -------------------------------------------------------------------------------- /app/views/admin/posts/search.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/search.js.erb -------------------------------------------------------------------------------- /app/views/admin/posts/update.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/posts/update.js.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_agent_stats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/reports/_agent_stats.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_date_selector.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/reports/_date_selector.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_report_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/reports/_report_header.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/_reports_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/reports/_reports_nav.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/groups.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/reports/groups.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/reports/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/reports/team.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/reports/team.html.erb -------------------------------------------------------------------------------- /app/views/admin/search/_topic_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/search/_topic_search.html.erb -------------------------------------------------------------------------------- /app/views/admin/search/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/search/search.html.erb -------------------------------------------------------------------------------- /app/views/admin/search/search.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/search/search.js.erb -------------------------------------------------------------------------------- /app/views/admin/settings/_menu.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/settings/design.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/design.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/email.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/general.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/general.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/i18n.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/i18n.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/integration.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/integration.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/notifications.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/notifications.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/profile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/profile.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/theme.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/theme.html.erb -------------------------------------------------------------------------------- /app/views/admin/settings/update_settings.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/update_settings.js.erb -------------------------------------------------------------------------------- /app/views/admin/settings/widget.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/settings/widget.html.erb -------------------------------------------------------------------------------- /app/views/admin/shared/_pipeline.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/shared/_pipeline.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_hidden_notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_hidden_notes.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_new_ticket.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_new_ticket.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_post.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_stat_box.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_stat_box.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_ticket.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_ticket.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_ticket_stats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_ticket_stats.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_tickets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_tickets.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_topic.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_topic.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/_topic_options.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/_topic_options.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/index.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/index.js.erb -------------------------------------------------------------------------------- /app/views/admin/topics/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/new.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/new.js.erb -------------------------------------------------------------------------------- /app/views/admin/topics/shortcuts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/shortcuts.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/topics/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/show.js.erb -------------------------------------------------------------------------------- /app/views/admin/topics/update_ticket.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/topics/update_ticket.js.erb -------------------------------------------------------------------------------- /app/views/admin/users/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/_edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/_invite.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/_invite.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/_user.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/_user_info.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/_user_info.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/_users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/_users.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/edit.js.erb -------------------------------------------------------------------------------- /app/views/admin/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/invite.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/invite.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/show.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/show.js.erb -------------------------------------------------------------------------------- /app/views/admin/users/user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/user.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/users.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/users.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/admin/users/users.js.erb -------------------------------------------------------------------------------- /app/views/categories/_left_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/categories/_left_nav.html.erb -------------------------------------------------------------------------------- /app/views/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/invitations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/invitations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/docs/_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/docs/_comment.html.erb -------------------------------------------------------------------------------- /app/views/docs/_comment_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/docs/_comment_form.html.erb -------------------------------------------------------------------------------- /app/views/docs/_doc.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/docs/_doc.html.erb -------------------------------------------------------------------------------- /app/views/docs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/docs/show.html.erb -------------------------------------------------------------------------------- /app/views/errors/internal_server_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/errors/internal_server_error.html.erb -------------------------------------------------------------------------------- /app/views/errors/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/errors/not_found.html.erb -------------------------------------------------------------------------------- /app/views/forums/_forum.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/forums/_forum.html.erb -------------------------------------------------------------------------------- /app/views/forums/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/forums/index.html.erb -------------------------------------------------------------------------------- /app/views/home/_team_member.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/home/_team_member.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/kaminari/_first_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/kaminari/_last_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_above_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_above_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_admin_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_admin_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_contact_support.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/_did_this_help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_did_this_help.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_google_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_google_analytics.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_head.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_login.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_login.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_page_title.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/_page_title.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin-plain.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/admin-plain.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin-settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/admin-settings.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/admin.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/bootstrap_test.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/bootstrap_test.html.erb -------------------------------------------------------------------------------- /app/views/layouts/clean.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/clean.html.erb -------------------------------------------------------------------------------- /app/views/layouts/devise.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/devise.html.erb -------------------------------------------------------------------------------- /app/views/layouts/errors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/errors.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/onboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/onboard.html.erb -------------------------------------------------------------------------------- /app/views/layouts/widget.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/layouts/widget.html.erb -------------------------------------------------------------------------------- /app/views/locales/select.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/locales/select.html.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/new_private.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/notification_mailer/new_private.html.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/new_private.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/notification_mailer/new_private.text.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/new_public.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/notification_mailer/new_public.html.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/new_public.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/notification_mailer/new_public.text.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/new_reply.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/notification_mailer/new_reply.html.erb -------------------------------------------------------------------------------- /app/views/notification_mailer/new_reply.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/notification_mailer/new_reply.text.erb -------------------------------------------------------------------------------- /app/views/post_mailer/new_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/post_mailer/new_post.html.erb -------------------------------------------------------------------------------- /app/views/post_mailer/new_post.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/post_mailer/new_post.text.erb -------------------------------------------------------------------------------- /app/views/posts/_attachment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/posts/_attachment.html.erb -------------------------------------------------------------------------------- /app/views/posts/_flag.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/posts/_flag.html.erb -------------------------------------------------------------------------------- /app/views/posts/_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/posts/_post.html.erb -------------------------------------------------------------------------------- /app/views/posts/_thumbnail.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/posts/_thumbnail.html.erb -------------------------------------------------------------------------------- /app/views/posts/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/posts/create.js.erb -------------------------------------------------------------------------------- /app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /app/views/posts/up_vote.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/posts/up_vote.js.erb -------------------------------------------------------------------------------- /app/views/result/_results_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/result/_results_found.html.erb -------------------------------------------------------------------------------- /app/views/result/_search_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/result/_search_form.html.erb -------------------------------------------------------------------------------- /app/views/result/_search_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/result/_search_results.html.erb -------------------------------------------------------------------------------- /app/views/result/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/result/index.html.erb -------------------------------------------------------------------------------- /app/views/result/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/result/index.js -------------------------------------------------------------------------------- /app/views/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/topic_mailer/new_ticket.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topic_mailer/new_ticket.html.erb -------------------------------------------------------------------------------- /app/views/topic_mailer/new_ticket.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topic_mailer/new_ticket.text.erb -------------------------------------------------------------------------------- /app/views/topics/_grid.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/_grid.html.erb -------------------------------------------------------------------------------- /app/views/topics/_qna.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/_qna.html.erb -------------------------------------------------------------------------------- /app/views/topics/_ticket.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/_ticket.html.erb -------------------------------------------------------------------------------- /app/views/topics/_topic.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/_topic.html.erb -------------------------------------------------------------------------------- /app/views/topics/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/index.html.erb -------------------------------------------------------------------------------- /app/views/topics/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/new.html.erb -------------------------------------------------------------------------------- /app/views/topics/tag.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/tag.html.erb -------------------------------------------------------------------------------- /app/views/topics/thanks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/thanks.html.erb -------------------------------------------------------------------------------- /app/views/topics/ticket.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/ticket.html.erb -------------------------------------------------------------------------------- /app/views/topics/tickets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/tickets.html.erb -------------------------------------------------------------------------------- /app/views/topics/up_vote.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/topics/up_vote.js.erb -------------------------------------------------------------------------------- /app/views/user_mailer/new_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/user_mailer/new_user.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/new_user.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/user_mailer/new_user.text.erb -------------------------------------------------------------------------------- /app/views/users/finish_signup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/users/finish_signup.html.erb -------------------------------------------------------------------------------- /app/views/widget/topics/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/widget/topics/new.html.erb -------------------------------------------------------------------------------- /app/views/widget/topics/thanks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/app/views/widget/topics/thanks.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/bin/spring -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/bower.json -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cloudinary.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/cloudinary.sample.yml -------------------------------------------------------------------------------- /config/database.do.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/database.do.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/acts_as_taggable_on.rb: -------------------------------------------------------------------------------- 1 | ActsAsTaggableOn.delimiter = ',' 2 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/client_side_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/client_side_validations.rb -------------------------------------------------------------------------------- /config/initializers/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/config.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/default_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/default_settings.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/griddler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/griddler.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/pg_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/pg_search.rb -------------------------------------------------------------------------------- /config/initializers/route_translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/route_translator.rb -------------------------------------------------------------------------------- /config/initializers/sentence_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/sentence_case.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/sucker_punch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/sucker_punch.rb -------------------------------------------------------------------------------- /config/initializers/swagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/swagger.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/ca.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/devise/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/ar.yml -------------------------------------------------------------------------------- /config/locales/devise/az.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/az.yml -------------------------------------------------------------------------------- /config/locales/devise/bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/bg.yml -------------------------------------------------------------------------------- /config/locales/devise/bn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/bn.yml -------------------------------------------------------------------------------- /config/locales/devise/bs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/bs.yml -------------------------------------------------------------------------------- /config/locales/devise/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/ca.yml -------------------------------------------------------------------------------- /config/locales/devise/cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/cs.yml -------------------------------------------------------------------------------- /config/locales/devise/da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/da.yml -------------------------------------------------------------------------------- /config/locales/devise/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/de.yml -------------------------------------------------------------------------------- /config/locales/devise/el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/el.yml -------------------------------------------------------------------------------- /config/locales/devise/en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/en-GB.yml -------------------------------------------------------------------------------- /config/locales/devise/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/en.yml -------------------------------------------------------------------------------- /config/locales/devise/es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/es-MX.yml -------------------------------------------------------------------------------- /config/locales/devise/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/es.yml -------------------------------------------------------------------------------- /config/locales/devise/et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/et.yml -------------------------------------------------------------------------------- /config/locales/devise/fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/fa.yml -------------------------------------------------------------------------------- /config/locales/devise/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/fi.yml -------------------------------------------------------------------------------- /config/locales/devise/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/fr.yml -------------------------------------------------------------------------------- /config/locales/devise/he.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/he.yml -------------------------------------------------------------------------------- /config/locales/devise/hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/hr.yml -------------------------------------------------------------------------------- /config/locales/devise/hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/hu.yml -------------------------------------------------------------------------------- /config/locales/devise/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/id.yml -------------------------------------------------------------------------------- /config/locales/devise/is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/is.yml -------------------------------------------------------------------------------- /config/locales/devise/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/it.yml -------------------------------------------------------------------------------- /config/locales/devise/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/ja.yml -------------------------------------------------------------------------------- /config/locales/devise/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/ko.yml -------------------------------------------------------------------------------- /config/locales/devise/lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/lt.yml -------------------------------------------------------------------------------- /config/locales/devise/lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/lv.yml -------------------------------------------------------------------------------- /config/locales/devise/my.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/my.yml -------------------------------------------------------------------------------- /config/locales/devise/nb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/nb.yml -------------------------------------------------------------------------------- /config/locales/devise/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/nl.yml -------------------------------------------------------------------------------- /config/locales/devise/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/no.yml -------------------------------------------------------------------------------- /config/locales/devise/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/pl.yml -------------------------------------------------------------------------------- /config/locales/devise/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/pt-BR.yml -------------------------------------------------------------------------------- /config/locales/devise/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/pt.yml -------------------------------------------------------------------------------- /config/locales/devise/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/ro.yml -------------------------------------------------------------------------------- /config/locales/devise/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/ru.yml -------------------------------------------------------------------------------- /config/locales/devise/sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/sk.yml -------------------------------------------------------------------------------- /config/locales/devise/sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/sl.yml -------------------------------------------------------------------------------- /config/locales/devise/sr-RS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/sr-RS.yml -------------------------------------------------------------------------------- /config/locales/devise/sr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/sr.yml -------------------------------------------------------------------------------- /config/locales/devise/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/sv.yml -------------------------------------------------------------------------------- /config/locales/devise/th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/th.yml -------------------------------------------------------------------------------- /config/locales/devise/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/tr.yml -------------------------------------------------------------------------------- /config/locales/devise/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/uk.yml -------------------------------------------------------------------------------- /config/locales/devise/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/vi.yml -------------------------------------------------------------------------------- /config/locales/devise/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/zh-CN.yml -------------------------------------------------------------------------------- /config/locales/devise/zh-HK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/zh-HK.yml -------------------------------------------------------------------------------- /config/locales/devise/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/devise/zh-TW.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/et.yml -------------------------------------------------------------------------------- /config/locales/fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/fa.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/hi.yml -------------------------------------------------------------------------------- /config/locales/hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/hu.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.af.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.af.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ar.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.az.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.az.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.be.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.be.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.bg.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.bn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.bn.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.bs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.bs.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ca.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.cs.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.cy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.cy.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.da.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.de.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.el.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.en.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.eo.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.es.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.et.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.eu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.eu.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.fa.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.fi.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.fr.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ga.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.gl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.gl.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.gu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.gu.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ha.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.hi.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.hr.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.hu.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.hy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.hy.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.id.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ig.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.is.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.it.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ja.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ka.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.kk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.kk.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.km.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.km.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.kn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.kn.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ko.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.lo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.lo.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.lt.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.lv.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.mg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.mg.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.mk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.mk.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ml.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.mn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.mn.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.mr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.mr.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ms.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.mt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.mt.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.my.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.my.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ne.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.nl.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.pa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.pa.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.pl.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.pt.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ro.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ru.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.si.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.si.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.sk.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.sl.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.so.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.so.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.sq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.sq.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.sr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.sr.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.sv.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.sw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.sw.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ta.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.te.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.te.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.th.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.tr.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.uk.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.ur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.ur.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.uz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.uz.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.vi.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.yi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.yi.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.yo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.yo.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.zh.yml -------------------------------------------------------------------------------- /config/locales/languages/i18n_languages.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/languages/i18n_languages.zu.yml -------------------------------------------------------------------------------- /config/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/nl.yml -------------------------------------------------------------------------------- /config/locales/oauth/i18n_omniauth_buttons.ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/oauth/i18n_omniauth_buttons.ca.yml -------------------------------------------------------------------------------- /config/locales/oauth/i18n_omniauth_buttons.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/oauth/i18n_omniauth_buttons.en.yml -------------------------------------------------------------------------------- /config/locales/oauth/i18n_omniauth_buttons.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/oauth/i18n_omniauth_buttons.es.yml -------------------------------------------------------------------------------- /config/locales/oauth/i18n_omniauth_buttons.fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/oauth/i18n_omniauth_buttons.fa.yml -------------------------------------------------------------------------------- /config/locales/oauth/i18n_omniauth_buttons.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/oauth/i18n_omniauth_buttons.fr.yml -------------------------------------------------------------------------------- /config/locales/oauth/i18n_omniauth_buttons.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/oauth/i18n_omniauth_buttons.ja.yml -------------------------------------------------------------------------------- /config/locales/oauth/i18n_omniauth_buttons.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/oauth/i18n_omniauth_buttons.ru.yml -------------------------------------------------------------------------------- /config/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/pt.yml -------------------------------------------------------------------------------- /config/locales/pt_BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/pt_BR.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/sv.yml -------------------------------------------------------------------------------- /config/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/tr.yml -------------------------------------------------------------------------------- /config/locales/translating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/translating.md -------------------------------------------------------------------------------- /config/locales/zh_CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/zh_CN.yml -------------------------------------------------------------------------------- /config/locales/zh_TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/locales/zh_TW.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/settings.yml -------------------------------------------------------------------------------- /config/settings/development.yml: -------------------------------------------------------------------------------- 1 | send_email: true 2 | -------------------------------------------------------------------------------- /config/settings/production.yml: -------------------------------------------------------------------------------- 1 | send_email: true 2 | -------------------------------------------------------------------------------- /config/settings/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/settings/test.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/migrate/20150313175511_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313175511_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20150313180615_create_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313180615_create_docs.rb -------------------------------------------------------------------------------- /db/migrate/20150313180748_create_forums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313180748_create_forums.rb -------------------------------------------------------------------------------- /db/migrate/20150313180829_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313180829_create_posts.rb -------------------------------------------------------------------------------- /db/migrate/20150313181022_create_topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313181022_create_topics.rb -------------------------------------------------------------------------------- /db/migrate/20150313181524_create_votes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313181524_create_votes.rb -------------------------------------------------------------------------------- /db/migrate/20150313181700_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313181700_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20150313183850_add_devise_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150313183850_add_devise_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150320171334_create_searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150320171334_create_searches.rb -------------------------------------------------------------------------------- /db/migrate/20150414210945_create_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20150414210945_create_versions.rb -------------------------------------------------------------------------------- /db/migrate/20151027034830_translate_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20151027034830_translate_docs.rb -------------------------------------------------------------------------------- /db/migrate/20151126032907_add_columns_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20151126032907_add_columns_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160222043130_add_lang_to_topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20160222043130_add_lang_to_topics.rb -------------------------------------------------------------------------------- /db/migrate/20160310044144_add_doc_id_to_topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20160310044144_add_doc_id_to_topic.rb -------------------------------------------------------------------------------- /db/migrate/20160330152420_create_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20160330152420_create_settings.rb -------------------------------------------------------------------------------- /db/migrate/20160619160937_create_api_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20160619160937_create_api_keys.rb -------------------------------------------------------------------------------- /db/migrate/20160814221258_add_timezone_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20160814221258_add_timezone_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20161001090839_create_flags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20161001090839_create_flags.rb -------------------------------------------------------------------------------- /db/migrate/20161011213000_add_attachments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20161011213000_add_attachments.rb -------------------------------------------------------------------------------- /db/migrate/20161017170305_create_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20161017170305_create_images.rb -------------------------------------------------------------------------------- /db/migrate/20161028211434_add_cc_to_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20161028211434_add_cc_to_post.rb -------------------------------------------------------------------------------- /db/migrate/20161030210752_add_raw_to_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20161030210752_add_raw_to_posts.rb -------------------------------------------------------------------------------- /db/migrate/20161116233432_add_channel_to_topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20161116233432_add_channel_to_topics.rb -------------------------------------------------------------------------------- /db/migrate/20170120154323_add_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20170120154323_add_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20170121155626_add_columns_to_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20170121155626_add_columns_to_tag.rb -------------------------------------------------------------------------------- /db/migrate/20170128182239_add_kind_to_topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20170128182239_add_kind_to_topics.rb -------------------------------------------------------------------------------- /db/migrate/20170302162152_add_fields_to_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/migrate/20170302162152_add_fields_to_tag.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/docs/SETUP.md -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/devise/custom_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/devise/custom_failure.rb -------------------------------------------------------------------------------- /lib/email_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/email_processor.rb -------------------------------------------------------------------------------- /lib/generators/theme/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/generators/theme/USAGE -------------------------------------------------------------------------------- /lib/generators/theme/templates/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/generators/theme/templates/about.markdown -------------------------------------------------------------------------------- /lib/generators/theme/templates/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/generators/theme/templates/all.css -------------------------------------------------------------------------------- /lib/generators/theme/templates/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/generators/theme/templates/all.js -------------------------------------------------------------------------------- /lib/generators/theme/templates/layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/generators/theme/templates/layout.html.erb -------------------------------------------------------------------------------- /lib/generators/theme/theme_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/generators/theme/theme_generator.rb -------------------------------------------------------------------------------- /lib/sentence_case/sentence_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/sentence_case/sentence_case.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/add_tickets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/tasks/add_tickets.rake -------------------------------------------------------------------------------- /lib/tasks/load.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/tasks/load.rake -------------------------------------------------------------------------------- /lib/tasks/populate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/tasks/populate.rake -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/public/422.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/parent-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/public/parent-redirect.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/admin/api_keys_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/api_keys_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/docs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/docs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/forums_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/forums_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/groups_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/groups_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/images_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/images_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/posts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/search_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/search_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/settings_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/settings_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/shared_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/shared_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/topics_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/topics_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin/users_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/admin_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/admin_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/categories_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/categories_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/docs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/docs_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/flags_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/flags_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/forums_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/forums_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/posts_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/posts_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/search_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/search_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/settings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/settings_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/topics_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/topics_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/users_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/api/v1/users_test.rb -------------------------------------------------------------------------------- /test/controllers/categories_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/categories_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/comments_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/comments_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/docs_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/docs_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/errors_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/errors_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/flags_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/flags_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/forums_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/forums_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/home_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/home_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/locales_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/locales_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/posts_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/registrations_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/registrations_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/result_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/result_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/topics_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/topics_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/widget/topics_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/controllers/widget/topics_controller_test.rb -------------------------------------------------------------------------------- /test/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/factories.rb -------------------------------------------------------------------------------- /test/fixtures/api_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/api_keys.yml -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/category_translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/category_translations.yml -------------------------------------------------------------------------------- /test/fixtures/doc_translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/doc_translations.yml -------------------------------------------------------------------------------- /test/fixtures/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/docs.yml -------------------------------------------------------------------------------- /test/fixtures/files/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/files/logo.png -------------------------------------------------------------------------------- /test/fixtures/flags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/flags.yml -------------------------------------------------------------------------------- /test/fixtures/forums.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/forums.yml -------------------------------------------------------------------------------- /test/fixtures/images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/images.yml -------------------------------------------------------------------------------- /test/fixtures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/logo.png -------------------------------------------------------------------------------- /test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/posts.yml -------------------------------------------------------------------------------- /test/fixtures/test.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/test.odt -------------------------------------------------------------------------------- /test/fixtures/topic_mailer/new_ticket.nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/topic_mailer/new_ticket.nl.txt -------------------------------------------------------------------------------- /test/fixtures/topic_mailer/new_ticket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/topic_mailer/new_ticket.txt -------------------------------------------------------------------------------- /test/fixtures/topics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/topics.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/fixtures/votes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/fixtures/votes.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/admin_settings_flows_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/integration/admin_settings_flows_test.rb -------------------------------------------------------------------------------- /test/integration/browsing_user_doc_flows_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/integration/browsing_user_doc_flows_test.rb -------------------------------------------------------------------------------- /test/integration/forum_voting_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/integration/forum_voting_test.rb -------------------------------------------------------------------------------- /test/integration/search_flows_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/integration/search_flows_test.rb -------------------------------------------------------------------------------- /test/integration/sign_in_flow_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/integration/sign_in_flow_test.rb -------------------------------------------------------------------------------- /test/integration/signed_in_user_doc_flows_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/integration/signed_in_user_doc_flows_test.rb -------------------------------------------------------------------------------- /test/integration_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/integration_test_helper.rb -------------------------------------------------------------------------------- /test/jobs/tracker_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/jobs/tracker_job_test.rb -------------------------------------------------------------------------------- /test/lib/email_processor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/lib/email_processor_test.rb -------------------------------------------------------------------------------- /test/mailers/notification_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/mailers/notification_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/post_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/mailers/post_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/previews/post_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/mailers/previews/post_mailer_preview.rb -------------------------------------------------------------------------------- /test/mailers/previews/topic_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/mailers/previews/topic_mailer_preview.rb -------------------------------------------------------------------------------- /test/mailers/user_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/mailers/user_mailer_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/api_key_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/api_key_test.rb -------------------------------------------------------------------------------- /test/models/category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/category_test.rb -------------------------------------------------------------------------------- /test/models/doc_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/doc_test.rb -------------------------------------------------------------------------------- /test/models/flag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/flag_test.rb -------------------------------------------------------------------------------- /test/models/forum_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/forum_test.rb -------------------------------------------------------------------------------- /test/models/image_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/image_test.rb -------------------------------------------------------------------------------- /test/models/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/post_test.rb -------------------------------------------------------------------------------- /test/models/topic_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/topic_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/models/vote_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/models/vote_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/Bootstrap-icon-picker/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/Bootstrap-icon-picker/.bower.json -------------------------------------------------------------------------------- /vendor/assets/Bootstrap-icon-picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/Bootstrap-icon-picker/README.md -------------------------------------------------------------------------------- /vendor/assets/Bootstrap-icon-picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/Bootstrap-icon-picker/index.html -------------------------------------------------------------------------------- /vendor/assets/components/animate.css/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/animate.css/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/animate.css/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/animate.css/Gruntfile.js -------------------------------------------------------------------------------- /vendor/assets/components/animate.css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/animate.css/animate.css -------------------------------------------------------------------------------- /vendor/assets/components/animate.css/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/animate.css/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/animate.css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/animate.css/package.json -------------------------------------------------------------------------------- /vendor/assets/components/autolink/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/autolink/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/autolink/autolink-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/autolink/autolink-min.js -------------------------------------------------------------------------------- /vendor/assets/components/autolink/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/autolink/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/blueimp-tmpl/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/blueimp-tmpl/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/blueimp-tmpl/js/tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/blueimp-tmpl/js/tmpl.js -------------------------------------------------------------------------------- /vendor/assets/components/bootstrap-social/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dev 3 | -------------------------------------------------------------------------------- /vendor/assets/components/flare/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/flare/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/LICENSE -------------------------------------------------------------------------------- /vendor/assets/components/flare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/README.md -------------------------------------------------------------------------------- /vendor/assets/components/flare/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/flare/dist/flare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/dist/flare.js -------------------------------------------------------------------------------- /vendor/assets/components/flare/dist/flare.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/dist/flare.min.js -------------------------------------------------------------------------------- /vendor/assets/components/flare/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/gulpfile.js -------------------------------------------------------------------------------- /vendor/assets/components/flare/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/package.json -------------------------------------------------------------------------------- /vendor/assets/components/flare/src/flare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/flare/src/flare.js -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/initial.js/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .npm-debug.log 3 | tmp -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/initial.js/Gruntfile.js -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/initial.js/LICENSE -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/initial.js/README.md -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/initial.js/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/initial.js/initial.js -------------------------------------------------------------------------------- /vendor/assets/components/initial.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/initial.js/package.json -------------------------------------------------------------------------------- /vendor/assets/components/js-cookie/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/js-cookie/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/js-cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/js-cookie/README.md -------------------------------------------------------------------------------- /vendor/assets/components/js-cookie/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/js-cookie/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/magnific-popup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/magnific-popup/LICENSE -------------------------------------------------------------------------------- /vendor/assets/components/pick-a-color/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/pick-a-color/LICENSE -------------------------------------------------------------------------------- /vendor/assets/components/pick-a-color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/pick-a-color/README.md -------------------------------------------------------------------------------- /vendor/assets/components/pick-a-color/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/pick-a-color/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/quill/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/quill/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/quill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/quill/LICENSE -------------------------------------------------------------------------------- /vendor/assets/components/quill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/quill/README.md -------------------------------------------------------------------------------- /vendor/assets/components/quill/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/quill/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/quill/dist/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/quill/dist/quill.js -------------------------------------------------------------------------------- /vendor/assets/components/quill/dist/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/quill/dist/quill.min.js -------------------------------------------------------------------------------- /vendor/assets/components/slideout.js/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/slideout.js/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/slideout.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/slideout.js/LICENSE -------------------------------------------------------------------------------- /vendor/assets/components/slideout.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/slideout.js/README.md -------------------------------------------------------------------------------- /vendor/assets/components/slideout.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/slideout.js/bower.json -------------------------------------------------------------------------------- /vendor/assets/components/slideout.js/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/slideout.js/index.css -------------------------------------------------------------------------------- /vendor/assets/components/slideout.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/slideout.js/index.js -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/.bower.json -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/.gitignore -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/Gruntfile.js -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/LICENSE -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/README.md -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/Rakefile -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/demo/demo.css -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/index.html -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/package.json -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/test/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/test/qunit.js -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/test/test.js -------------------------------------------------------------------------------- /vendor/assets/components/tinycolor/tinycolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/components/tinycolor/tinycolor.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/javascripts/jquery.fileupload.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/javascripts/jquery.ui.widget.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/mousetrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scott/helpy/HEAD/vendor/assets/javascripts/mousetrap.min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------