├── .buildpacks ├── .env.example ├── .gitattributes ├── .gitignore ├── .librarian ├── .gitattributes └── puppet │ └── config ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── ISSUE_TEMPLATE.md ├── Procfile ├── Puppetfile ├── Puppetfile.lock ├── README.md ├── Rakefile ├── Vagrantfile ├── app.json ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── Board.png │ │ ├── GitHub-Mark-Light-32px.png │ │ ├── Hu.png │ │ ├── HuBoardSplash.png │ │ ├── HuBoardSplash960.png │ │ ├── HuboLightP.png │ │ ├── HuboWhite.png │ │ ├── LogoFullPurpleDark.png │ │ ├── LogoFullPurpleLight.png │ │ ├── LogoWhiteFull.png │ │ ├── Plain.png │ │ ├── Screen Shot 2013-09-05 at 10.01.43 AM.png │ │ ├── ardDarkP.png │ │ ├── ardLightP.png │ │ ├── ardWhite.png │ │ ├── arrow.png │ │ ├── check.png │ │ ├── credit-cards-@1x.png │ │ ├── errors │ │ │ ├── 403 │ │ │ │ ├── 403.ai │ │ │ │ ├── 403.svg │ │ │ │ ├── 403_page.ai │ │ │ │ ├── 403_page.png │ │ │ │ ├── 403_page.svg │ │ │ │ ├── 403_policeman.ai │ │ │ │ ├── 403_policeman.png │ │ │ │ └── 403_policeman.svg │ │ │ ├── 404 │ │ │ │ ├── 404-thief-782x722.png │ │ │ │ ├── 404-thief.svg │ │ │ │ ├── 404.ai │ │ │ │ └── 404.svg │ │ │ ├── 500 │ │ │ │ ├── 500-robot-776x848.png │ │ │ │ ├── 500-robot.svg │ │ │ │ ├── 500.ai │ │ │ │ └── 500.svg │ │ │ ├── 503 │ │ │ │ ├── 503-guy-746x777.png │ │ │ │ ├── 503-guy.svg │ │ │ │ ├── 503.ai │ │ │ │ └── 503.svg │ │ │ └── 404a │ │ │ │ ├── 404a-death-766x768.png │ │ │ │ ├── 404a-death.svg │ │ │ │ ├── 404a.ai │ │ │ │ └── 404a.svg │ │ ├── fabric_plaid.png │ │ ├── favicon.ico │ │ ├── github_logo.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── headerTransparent.png │ │ ├── icn-coupon.png │ │ ├── icon-download-2x.png │ │ ├── icon-print-2x.png │ │ ├── marketing │ │ │ ├── DragAvatar@2x.png │ │ │ ├── Filter@2x.png │ │ │ ├── Integrations@2x.png │ │ │ ├── Kanban@2x.png │ │ │ ├── Prioritize@2x.png │ │ │ ├── avatar.png │ │ │ ├── chris-mcavoy.jpg │ │ │ ├── faq-1.png │ │ │ ├── faq-2.png │ │ │ ├── faq-3.png │ │ │ ├── faq-4.png │ │ │ ├── faq-5.png │ │ │ ├── faq-6.png │ │ │ ├── feature--blocked-status--small.gif │ │ │ ├── feature--dnd-assign--small.gif │ │ │ ├── feature--dnd-columns--small.gif │ │ │ ├── feature--dnd-milestones--small.gif │ │ │ ├── feature--filters--small.gif │ │ │ ├── feature--ready-status--small.gif │ │ │ ├── feature--reorder--small.gif │ │ │ ├── feature--slack-integration--small.gif │ │ │ ├── feature-1.png │ │ │ ├── feature-blank-small.png │ │ │ ├── feature-blank.png │ │ │ ├── footer-bg--lighthouse.png │ │ │ ├── footer-bg--sea.png │ │ │ ├── header-bg--github--full.png │ │ │ ├── header-bg--github.png │ │ │ ├── header-bg--hexs.png │ │ │ ├── header-bg--stars.png │ │ │ ├── horizontal@2x.png │ │ │ ├── integration--blur.png │ │ │ ├── integration--blur@2x.png │ │ │ ├── integration-1.png │ │ │ ├── integration-2.png │ │ │ ├── integration-3.png │ │ │ ├── integration-4.png │ │ │ ├── integration-huboard.png │ │ │ ├── login-form-title.png │ │ │ ├── logo.png │ │ │ ├── permissions-icon--private.png │ │ │ ├── permissions-icon--public.png │ │ │ ├── permissions-read--false.png │ │ │ ├── permissions-read.png │ │ │ ├── permissions-write--false.png │ │ │ ├── permissions-write.png │ │ │ ├── plan-icon-1.png │ │ │ ├── plan-icon-2.png │ │ │ ├── plan-icon-3.png │ │ │ ├── select-arrow.png │ │ │ ├── separator.png │ │ │ ├── techstars.png │ │ │ ├── tick.png │ │ │ ├── trusted--adobe.png │ │ │ ├── trusted--apple.png │ │ │ ├── trusted--att.png │ │ │ ├── trusted--carnegie.png │ │ │ ├── trusted--facebook.png │ │ │ ├── trusted--google.png │ │ │ ├── trusted--microsoft.png │ │ │ ├── trusted--mozilla.png │ │ │ ├── trusted--rdio.png │ │ │ ├── trusted--shopify.png │ │ │ ├── trusted--ted.png │ │ │ ├── trusted--twitter.png │ │ │ └── twitter-icon.png │ │ ├── mba.png │ │ ├── sweet-icons-settings--white-32.png │ │ ├── texture-bg.png │ │ └── x.png │ ├── javascripts │ │ ├── accounts │ │ │ ├── application.js.erb │ │ │ ├── components │ │ │ │ ├── x_pane_component.js │ │ │ │ └── x_tabs_component.js │ │ │ ├── config │ │ │ │ ├── app.js │ │ │ │ └── routes.js │ │ │ ├── controllers │ │ │ │ ├── account_controller.js │ │ │ │ ├── application_controller.js │ │ │ │ ├── apply_coupon_controller.js │ │ │ │ ├── cancel_form_controller.js │ │ │ │ ├── coupon_controller.js │ │ │ │ ├── credit_card_form_controller.js │ │ │ │ ├── history_controller.js │ │ │ │ ├── purchase_form_controller.js │ │ │ │ ├── update_card_controller.js │ │ │ │ └── update_email_controller.js │ │ │ ├── env.js.erb │ │ │ ├── helpers │ │ │ │ └── stripe.js │ │ │ ├── models │ │ │ │ ├── org.js │ │ │ │ └── user.js │ │ │ ├── routes │ │ │ │ ├── application_route.js │ │ │ │ ├── index_route.js │ │ │ │ ├── loading_route.js │ │ │ │ └── profile_route.js │ │ │ ├── templates │ │ │ │ ├── account.hbs │ │ │ │ ├── apply_coupon.hbs │ │ │ │ ├── cancel_form.hbs │ │ │ │ ├── components │ │ │ │ │ ├── x-pane.hbs │ │ │ │ │ └── x-tabs.hbs │ │ │ │ ├── history.hbs │ │ │ │ ├── index.hbs │ │ │ │ ├── loading.hbs │ │ │ │ ├── profile.hbs │ │ │ │ ├── purchase_form.hbs │ │ │ │ ├── update_card.hbs │ │ │ │ └── update_email.hbs │ │ │ └── views │ │ │ │ ├── apply_coupon_view.js │ │ │ │ ├── cancel_form_view.js │ │ │ │ ├── loading_view.js │ │ │ │ ├── modal_view.js │ │ │ │ ├── purchase_form_view.js │ │ │ │ ├── update_card_view.js │ │ │ │ └── update_email_view.js │ │ ├── application.js │ │ ├── bootstrap.js │ │ ├── ember │ │ │ ├── ember-1.0.0-rc.6.js │ │ │ ├── ember-1.0.0-rc.7.js │ │ │ ├── ember.js │ │ │ ├── handlebars-1.0.0-rc.4.js │ │ │ ├── handlebars-1.0.0.js │ │ │ └── jquery-1.9.1.js │ │ ├── jquery-ui.superSortable.js │ │ ├── login.coffee │ │ ├── marketing.js │ │ ├── marketing │ │ │ ├── main.js │ │ │ ├── plugins.js │ │ │ └── vendor │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── respond.js │ │ │ │ ├── selectivizr-min.js │ │ │ │ └── unslider.min.js │ │ ├── spin.js │ │ └── vendor │ │ │ ├── backbone.js │ │ │ ├── ember-bootstrap.js │ │ │ ├── ember-bootstrap.min.js │ │ │ ├── ember-bootstrap.prod.js │ │ │ ├── ember-data.js │ │ │ ├── ember.js │ │ │ ├── firebugx.js │ │ │ ├── handlebars.js │ │ │ ├── jquery-ui.js │ │ │ ├── jquery.color.js │ │ │ ├── jquery.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ ├── jquery.payment.js │ │ │ ├── jquery.ui.touch-punch.min.js │ │ │ ├── localstorage_adapter.js │ │ │ ├── postal.min.js │ │ │ ├── require-jquery.js │ │ │ ├── spin.js │ │ │ └── underscore.js │ └── stylesheets │ │ ├── _account.scss │ │ ├── _arrow.scss │ │ ├── _assignees.scss │ │ ├── _board.scss │ │ ├── _boxed-group.scss │ │ ├── _breadcrumbs.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _card_states.scss │ │ ├── _colors.scss │ │ ├── _credit_cards.scss │ │ ├── _date_picker.scss │ │ ├── _flex_form.scss │ │ ├── _font.scss │ │ ├── _fonts.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _integrations.scss │ │ ├── _issue.scss │ │ ├── _markdown.scss │ │ ├── _milestone.scss │ │ ├── _mixins.scss │ │ ├── _overlay.scss │ │ ├── _permissions.scss │ │ ├── _repo-settings.scss │ │ ├── _repos.scss │ │ ├── _scroll.scss │ │ ├── _section.scss │ │ ├── _sidebar.scss │ │ ├── _textcomplete.scss │ │ ├── _tooltips.scss │ │ ├── _topbar.scss │ │ ├── application.css.scss │ │ ├── bootstrap.css │ │ ├── bourbon │ │ ├── _bourbon-deprecated-upcoming.scss │ │ ├── _bourbon.scss │ │ ├── addons │ │ │ ├── _button.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _font-family.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _html5-input-types.scss │ │ │ ├── _position.scss │ │ │ ├── _prefixer.scss │ │ │ └── _timing-functions.scss │ │ ├── css3 │ │ │ ├── _animation.scss │ │ │ ├── _appearance.scss │ │ │ ├── _background-image.scss │ │ │ ├── _background-size.scss │ │ │ ├── _background.scss │ │ │ ├── _border-image.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _box-sizing.scss │ │ │ ├── _columns.scss │ │ │ ├── _flex-box.scss │ │ │ ├── _flex-box_old.scss │ │ │ ├── _font-face.scss │ │ │ ├── _hidpi-media-query.scss │ │ │ ├── _image-rendering.scss │ │ │ ├── _inline-block.scss │ │ │ ├── _linear-gradient.scss │ │ │ ├── _perspective.scss │ │ │ ├── _radial-gradient.scss │ │ │ ├── _transform.scss │ │ │ ├── _transition.scss │ │ │ └── _user-select.scss │ │ └── functions │ │ │ ├── _compact.scss │ │ │ ├── _deprecated-webkit-gradient.scss │ │ │ ├── _flex-grid.scss │ │ │ ├── _grid-width.scss │ │ │ ├── _linear-gradient.scss │ │ │ ├── _modular-scale.scss │ │ │ ├── _radial-gradient.scss │ │ │ ├── _render-gradients.scss │ │ │ ├── _tint-shade.scss │ │ │ └── _transition-property-name.scss │ │ ├── components │ │ ├── _column-indicator.scss │ │ ├── _flash-message.scss │ │ ├── _health.scss │ │ ├── _issue-status.scss │ │ └── _selector.scss │ │ ├── css3 │ │ └── _filters.scss │ │ ├── errors │ │ ├── main.css.scss │ │ └── partials │ │ │ ├── layout.scss │ │ │ └── message.scss │ │ ├── flex_layout.css.scss │ │ ├── login.scss │ │ ├── marketing.css.scss │ │ ├── marketing │ │ ├── main.scss │ │ ├── modules │ │ │ ├── _fonts.scss │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ │ ├── partials │ │ │ ├── _components.scss │ │ │ ├── _content.scss │ │ │ ├── _crumbtrail.scss │ │ │ ├── _faq.scss │ │ │ ├── _footer.scss │ │ │ ├── _forms.scss │ │ │ ├── _globals.scss │ │ │ ├── _header.scss │ │ │ ├── _hero.scss │ │ │ ├── _homepage.scss │ │ │ ├── _integrations.scss │ │ │ ├── _layout.scss │ │ │ ├── _login.scss │ │ │ ├── _navigation.scss │ │ │ ├── _page.scss │ │ │ ├── _permissions.scss │ │ │ ├── _post.scss │ │ │ ├── _pricing.scss │ │ │ ├── _testimonials.scss │ │ │ ├── _typography.scss │ │ │ └── _widgets.scss │ │ └── vendor │ │ │ ├── _normalize.scss │ │ │ ├── bourbon │ │ │ ├── _bourbon-deprecated-upcoming.scss │ │ │ ├── _bourbon.scss │ │ │ ├── addons │ │ │ │ ├── _button.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _font-family.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _html5-input-types.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _prefixer.scss │ │ │ │ ├── _retina-image.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _timing-functions.scss │ │ │ │ └── _triangle.scss │ │ │ ├── css3 │ │ │ │ ├── _animation.scss │ │ │ │ ├── _appearance.scss │ │ │ │ ├── _backface-visibility.scss │ │ │ │ ├── _background-image.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _border-image.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-sizing.scss │ │ │ │ ├── _columns.scss │ │ │ │ ├── _flex-box.scss │ │ │ │ ├── _font-face.scss │ │ │ │ ├── _hidpi-media-query.scss │ │ │ │ ├── _image-rendering.scss │ │ │ │ ├── _inline-block.scss │ │ │ │ ├── _keyframes.scss │ │ │ │ ├── _linear-gradient.scss │ │ │ │ ├── _perspective.scss │ │ │ │ ├── _placeholder.scss │ │ │ │ ├── _radial-gradient.scss │ │ │ │ ├── _transform.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _user-select.scss │ │ │ ├── functions │ │ │ │ ├── _compact.scss │ │ │ │ ├── _flex-grid.scss │ │ │ │ ├── _grid-width.scss │ │ │ │ ├── _linear-gradient.scss │ │ │ │ ├── _modular-scale.scss │ │ │ │ ├── _px-to-em.scss │ │ │ │ ├── _radial-gradient.scss │ │ │ │ ├── _tint-shade.scss │ │ │ │ └── _transition-property-name.scss │ │ │ └── helpers │ │ │ │ ├── _deprecated-webkit-gradient.scss │ │ │ │ ├── _gradient-positions-parser.scss │ │ │ │ ├── _linear-positions-parser.scss │ │ │ │ ├── _radial-arg-parser.scss │ │ │ │ ├── _radial-positions-parser.scss │ │ │ │ ├── _render-gradients.scss │ │ │ │ └── _shape-size-stripper.scss │ │ │ ├── magnific-popup.scss │ │ │ └── neat │ │ │ ├── _neat-helpers.scss │ │ │ ├── _neat.scss │ │ │ ├── functions │ │ │ ├── _new-breakpoint.scss │ │ │ └── _private.scss │ │ │ ├── grid │ │ │ ├── _fill-parent.scss │ │ │ ├── _grid.scss │ │ │ ├── _media.scss │ │ │ ├── _omega.scss │ │ │ ├── _outer-container.scss │ │ │ ├── _pad.scss │ │ │ ├── _private.scss │ │ │ ├── _reset.scss │ │ │ ├── _row.scss │ │ │ ├── _shift.scss │ │ │ ├── _span-columns.scss │ │ │ ├── _to-deprecate.scss │ │ │ └── _visual-grid.scss │ │ │ └── settings │ │ │ ├── _grid.scss │ │ │ └── _visual-grid.scss │ │ ├── splash.css.scss │ │ └── style.css ├── controllers │ ├── api │ │ ├── api_controller.rb │ │ ├── board_controller.rb │ │ ├── columns_controller.rb │ │ ├── health_controller.rb │ │ ├── integrations_controller.rb │ │ ├── issues_controller.rb │ │ ├── links_controller.rb │ │ ├── milestones_controller.rb │ │ ├── repos_controller.rb │ │ ├── settings_controller.rb │ │ ├── subscriptions_controller.rb │ │ ├── uploads_controller.rb │ │ └── webhooks_controller.rb │ ├── application_controller.rb │ ├── board_controller.rb │ ├── concerns │ │ └── .keep │ ├── dashboard_controller.rb │ ├── errors_controller.rb │ ├── login_controller.rb │ ├── marketing_controller.rb │ ├── site_controller.rb │ └── welcome_controller.rb ├── helpers │ └── application_helper.rb ├── jobs │ ├── api │ │ ├── issues_archive_issue_job.rb │ │ ├── issues_assign_issue_job.rb │ │ ├── issues_assign_milestone_job.rb │ │ ├── issues_block_job.rb │ │ ├── issues_close_issue_job.rb │ │ ├── issues_create_comment_job.rb │ │ ├── issues_drag_card_job.rb │ │ ├── issues_edit_issue_job.rb │ │ ├── issues_label_issue_job.rb │ │ ├── issues_milestone_issue_job.rb │ │ ├── issues_open_issue_job.rb │ │ ├── issues_ready_job.rb │ │ ├── issues_reopen_issue_job.rb │ │ ├── issues_status_changed_job.rb │ │ ├── issues_unassign_issue_job.rb │ │ ├── issues_unblock_job.rb │ │ ├── issues_unlabel_issue_job.rb │ │ ├── issues_unready_job.rb │ │ ├── milestones_create_job.rb │ │ └── milestones_reorder_job.rb │ ├── cached_job.rb │ ├── issue_event_job.rb │ ├── milestone_event_job.rb │ └── publish_webhook_job.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── concerns │ │ └── .keep │ └── user.rb ├── uploaders │ ├── api_uploader.rb │ ├── asset_uploader.rb │ ├── aws_uploader.rb │ └── local_uploader.rb └── views │ ├── application │ └── index.html.erb │ ├── board │ ├── create_board.html.erb │ ├── enable_issues.html.erb │ └── index.html.erb │ ├── dashboard │ ├── _repo_filters.html.erb │ ├── _vcard.html.erb │ └── index.html.erb │ ├── errors │ ├── not_found.html.erb │ ├── not_found_b.html.erb │ ├── server_error.html.erb │ └── unauthenticated.html.erb │ ├── layouts │ ├── application.html.erb │ ├── ember.html.erb │ └── marketing.html.erb │ ├── login │ └── index.html.erb │ ├── marketing │ ├── index.html.erb │ ├── integrations.html.erb │ ├── marketing.html.erb │ └── pricing.html.erb │ ├── shared │ ├── _abtest.html.erb │ ├── _analytics.html.erb │ ├── _fontdeck.html.erb │ ├── _footer_nav.html.erb │ ├── _header.html.erb │ └── _logged_in.html.erb │ ├── site │ ├── privacy.html.erb │ └── terms.html.erb │ └── welcome │ └── index.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cache.rb │ ├── carrierwave.rb │ ├── cookies_serializer.rb │ ├── database_connection.rb │ ├── ember.rb │ ├── faye.rb │ ├── features.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── preview_interceptor.rb │ ├── query_handler.rb │ ├── rack-attack.rb │ ├── raygun.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── socket_backend.rb │ ├── warden.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── sidekiq.yml ├── couch ├── _design │ ├── Customers │ │ └── views │ │ │ ├── findByOrgId │ │ │ └── map.js │ │ │ └── findByUserId │ │ │ └── map.js │ ├── Repos │ │ ├── language.js │ │ └── views │ │ │ ├── issueCounts │ │ │ └── map.js │ │ │ └── privateOrPublic │ │ │ └── map.js │ └── Users │ │ ├── language.js │ │ └── views │ │ ├── byEmail │ │ └── map.js │ │ ├── byPlan │ │ └── map.js │ │ ├── byType │ │ └── map.js │ │ └── userOrOrg │ │ └── map.js ├── app │ ├── app_customers.js │ ├── app_integrations.js │ ├── app_plans.js │ ├── app_stats.js │ ├── app_test.js │ └── package.json └── debug │ └── app_users.js ├── db └── seeds.rb ├── ember-accounts ├── .editorconfig ├── .ember-cli ├── .gitignore ├── .jshintrc ├── .watchmanconfig ├── README.md ├── app │ ├── app.js │ ├── components │ │ ├── .gitkeep │ │ ├── apply-coupon.js │ │ ├── cancel-form.js │ │ ├── card-expiry-field.js │ │ ├── card-number-field.js │ │ ├── coupon-checkbox.js │ │ ├── coupon-code-field.js │ │ ├── credit-card-form.js │ │ ├── cvc-field.js │ │ ├── purchase-form.js │ │ ├── update-card.js │ │ ├── update-email.js │ │ ├── x-account.js │ │ ├── x-history.js │ │ ├── x-loading.js │ │ └── x-modal.js │ ├── controllers │ │ ├── .gitkeep │ │ └── user-profile.js │ ├── helpers │ │ ├── .gitkeep │ │ ├── asset-path.js │ │ ├── stripe-date.js │ │ └── stripe-money.js │ ├── index.html │ ├── mixins │ │ └── analytics.js │ ├── models │ │ ├── .gitkeep │ │ ├── organization.js │ │ └── user.js │ ├── overrides │ │ └── text-support.js │ ├── router.js │ ├── routes │ │ ├── .gitkeep │ │ ├── application.js │ │ ├── not-authorized.js │ │ ├── settings.js │ │ └── settings │ │ │ ├── profile.js │ │ │ ├── user-profile.js │ │ │ └── user-profile │ │ │ ├── billing.js │ │ │ └── plans.js │ ├── styles │ │ └── app.css │ ├── templates │ │ ├── application.hbs │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── apply-coupon.hbs │ │ │ ├── cancel-form.hbs │ │ │ ├── card-expiry-field.hbs │ │ │ ├── card-number-field.hbs │ │ │ ├── coupon-checkbox.hbs │ │ │ ├── coupon-code-field.hbs │ │ │ ├── credit-card-form.hbs │ │ │ ├── cvc-field.hbs │ │ │ ├── purchase-form.hbs │ │ │ ├── update-card.hbs │ │ │ ├── update-email.hbs │ │ │ ├── x-account.hbs │ │ │ ├── x-history.hbs │ │ │ ├── x-loading.hbs │ │ │ └── x-modal.hbs │ │ ├── loading.hbs │ │ ├── not-authorized.hbs │ │ ├── settings.hbs │ │ └── settings │ │ │ ├── loading.hbs │ │ │ ├── profile.hbs │ │ │ ├── profile │ │ │ ├── billing.hbs │ │ │ └── plans.hbs │ │ │ ├── user-profile.hbs │ │ │ └── user-profile │ │ │ ├── billing.hbs │ │ │ └── plans.hbs │ └── utils │ │ ├── animate-modal-close.js │ │ └── animate-modal-open.js ├── bower.json ├── config │ └── environment.js ├── ember-cli-build.js ├── package.json ├── public │ ├── assets │ │ └── images │ │ │ ├── Plain.png │ │ │ └── icn-coupon.png │ ├── crossdomain.xml │ └── robots.txt ├── testem.json ├── tests │ ├── .jshintrc │ ├── helpers │ │ ├── destroy-app.js │ │ ├── module-for-acceptance.js │ │ ├── resolver.js │ │ └── start-app.js │ ├── index.html │ ├── integration │ │ ├── .gitkeep │ │ └── components │ │ │ ├── apply-coupon-test.js │ │ │ ├── cancel-form-test.js │ │ │ ├── card-expiry-field-test.js │ │ │ ├── card-number-field-test.js │ │ │ ├── coupon-checkbox-test.js │ │ │ ├── coupon-code-field-test.js │ │ │ ├── credit-card-form-test.js │ │ │ ├── cvc-field-test.js │ │ │ ├── purchase-form-test.js │ │ │ ├── update-card-test.js │ │ │ ├── update-email-test.js │ │ │ ├── x-account-test.js │ │ │ ├── x-history-test.js │ │ │ ├── x-loading-test.js │ │ │ └── x-modal-test.js │ ├── test-helper.js │ └── unit │ │ ├── .gitkeep │ │ ├── controllers │ │ └── user-profile-test.js │ │ ├── helpers │ │ ├── asset-path-test.js │ │ ├── stripe-date-test.js │ │ └── stripe-money-test.js │ │ ├── models │ │ ├── organization-test.js │ │ └── user-test.js │ │ ├── routes │ │ ├── application-test.js │ │ ├── not-authorized-test.js │ │ ├── profile-test.js │ │ ├── settings-test.js │ │ ├── user-profile-test.js │ │ └── user-profile │ │ │ ├── billing-test.js │ │ │ └── plans-test.js │ │ └── utils │ │ ├── animate-modal-close-test.js │ │ └── animate-model-open-test.js └── vendor │ └── .gitkeep ├── ember-app ├── .editorconfig ├── .ember-cli ├── .gitignore ├── .jshintrc ├── .travis.yml ├── .watchmanconfig ├── README.md ├── app │ ├── app.js │ ├── components │ │ ├── .gitkeep │ │ ├── columns │ │ │ ├── hb-column-count.js │ │ │ ├── hb-column.js │ │ │ ├── hb-milestone-header.js │ │ │ ├── hb-milestone.js │ │ │ ├── hb-quick-issue.js │ │ │ └── hb-task-header.js │ │ ├── flash │ │ │ ├── hb-flash-message.js │ │ │ └── hb-message.js │ │ ├── hb-assignee.js │ │ ├── hb-avatar-tooltip.js │ │ ├── hb-avatar.js │ │ ├── hb-board-columns.js │ │ ├── hb-card-tray.js │ │ ├── hb-column-crumb.js │ │ ├── hb-date-picker.js │ │ ├── hb-filter-group.js │ │ ├── hb-filter.js │ │ ├── hb-label-selector.js │ │ ├── hb-label.js │ │ ├── hb-markdown-composer.js │ │ ├── hb-markdown-editor.js │ │ ├── hb-milestone-card.js │ │ ├── hb-milestone-drag.js │ │ ├── hb-milestone.js │ │ ├── hb-multi-assignee.js │ │ ├── hb-pane.js │ │ ├── hb-repo-selector.js │ │ ├── hb-selected-column.js │ │ ├── hb-spinner.js │ │ ├── hb-tabs.js │ │ ├── hb-task-card.js │ │ ├── hb-task-list.js │ │ ├── issue │ │ │ ├── activities │ │ │ │ ├── issue-activity.js │ │ │ │ ├── issue-comment.js │ │ │ │ ├── issue-status-chart.js │ │ │ │ └── issue-status.js │ │ │ ├── hb-body.js │ │ │ └── hb-title.js │ │ └── settings │ │ │ ├── hb-health.js │ │ │ ├── hb-label-chooser.js │ │ │ ├── hb-label.js │ │ │ └── hb-link.js │ ├── config │ │ ├── animate-modal-close.js │ │ └── animate-modal-open.js │ ├── controllers │ │ ├── .gitkeep │ │ ├── application.js │ │ ├── assignee.js │ │ ├── filters.js │ │ ├── index.js │ │ ├── issue.js │ │ ├── issue │ │ │ ├── create.js │ │ │ ├── reference.js │ │ │ └── reopen.js │ │ ├── milestones.js │ │ ├── milestones │ │ │ ├── create.js │ │ │ ├── edit.js │ │ │ └── missing.js │ │ ├── search.js │ │ ├── settings.js │ │ ├── settings │ │ │ ├── health.js │ │ │ ├── index.js │ │ │ ├── integrations.js │ │ │ ├── integrations │ │ │ │ ├── index.js │ │ │ │ └── new.js │ │ │ ├── links.js │ │ │ └── links │ │ │ │ └── index.js │ │ └── unauthorized.js │ ├── helpers │ │ ├── .gitkeep │ │ ├── asset-path.js │ │ ├── avatar-zindex.js │ │ ├── concat.js │ │ ├── object-value.js │ │ ├── repo-color-style.js │ │ ├── selected-label-style.js │ │ └── truncate.js │ ├── index.html │ ├── initializers │ │ ├── browser-session.js │ │ ├── deferReadiness.js │ │ ├── punch-component.js │ │ ├── punch-link-component.js │ │ ├── punch-router.js │ │ ├── settings.js │ │ └── sockets.js │ ├── mixins │ │ ├── buffered.js │ │ ├── cards │ │ │ ├── card-move.js │ │ │ └── sortable.js │ │ ├── issue-filters.js │ │ ├── key-press-handling.js │ │ ├── markdown-parsing.js │ │ ├── member-drag-and-drop.js │ │ ├── messaging.js │ │ ├── scrolling │ │ │ └── column.js │ │ ├── serializable.js │ │ └── subscriptions │ │ │ ├── board.js │ │ │ ├── card.js │ │ │ ├── issue.js │ │ │ └── milestone.js │ ├── models │ │ ├── .gitkeep │ │ ├── forms │ │ │ └── create-issue.js │ │ ├── global.js │ │ ├── health.js │ │ ├── integration.js │ │ ├── link.js │ │ ├── model.js │ │ ├── new │ │ │ ├── board.js │ │ │ ├── column.js │ │ │ ├── issue.js │ │ │ ├── milestone-column.js │ │ │ ├── milestone.js │ │ │ └── repo.js │ │ └── settings.js │ ├── resolver.js │ ├── router.js │ ├── routes │ │ ├── .gitkeep │ │ ├── application.js │ │ ├── index.js │ │ ├── index │ │ │ ├── issue.js │ │ │ └── loading.js │ │ ├── issue.js │ │ ├── milestones.js │ │ ├── milestones │ │ │ ├── issue.js │ │ │ ├── loading.js │ │ │ └── missing.js │ │ ├── settings.js │ │ ├── settings │ │ │ ├── health.js │ │ │ ├── integrations.js │ │ │ ├── integrations │ │ │ │ └── new.js │ │ │ └── links.js │ │ └── sync-issues.js │ ├── services │ │ ├── board-syncing.js │ │ ├── browser-session.js │ │ ├── filter-groups.js │ │ ├── filter-groups │ │ │ ├── board.js │ │ │ ├── card.js │ │ │ ├── column.js │ │ │ ├── label.js │ │ │ ├── member.js │ │ │ ├── milestone.js │ │ │ ├── search.js │ │ │ └── user.js │ │ ├── filters.js │ │ └── query-params.js │ ├── styles │ │ └── style.css │ ├── templates │ │ ├── application.hbs │ │ ├── assignee.hbs │ │ ├── assignee │ │ │ └── filter.hbs │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── columns │ │ │ │ ├── hb-column-count.hbs │ │ │ │ ├── hb-column.hbs │ │ │ │ ├── hb-milestone-header.hbs │ │ │ │ ├── hb-milestone.hbs │ │ │ │ ├── hb-quick-issue.hbs │ │ │ │ └── hb-task-header.hbs │ │ │ ├── flash │ │ │ │ ├── hb-flash-message.hbs │ │ │ │ └── hb-message.hbs │ │ │ ├── hb-assignee.hbs │ │ │ ├── hb-avatar-tooltip.hbs │ │ │ ├── hb-avatar.hbs │ │ │ ├── hb-board-columns.hbs │ │ │ ├── hb-card-tray.hbs │ │ │ ├── hb-column-crumb.hbs │ │ │ ├── hb-filter-group.hbs │ │ │ ├── hb-filter.hbs │ │ │ ├── hb-label-selector.hbs │ │ │ ├── hb-label.hbs │ │ │ ├── hb-markdown-composer.hbs │ │ │ ├── hb-markdown-editor.hbs │ │ │ ├── hb-milestone-card.hbs │ │ │ ├── hb-milestone.hbs │ │ │ ├── hb-multi-assignee.hbs │ │ │ ├── hb-pane.hbs │ │ │ ├── hb-repo-selector.hbs │ │ │ ├── hb-selected-column.hbs │ │ │ ├── hb-spinner.hbs │ │ │ ├── hb-tabs.hbs │ │ │ ├── hb-task-card.hbs │ │ │ ├── hb-task-list.hbs │ │ │ ├── issue │ │ │ │ ├── activities │ │ │ │ │ └── issue-status.hbs │ │ │ │ ├── hb-body.hbs │ │ │ │ └── hb-title.hbs │ │ │ └── settings │ │ │ │ ├── hb-health.hbs │ │ │ │ ├── hb-label-chooser.hbs │ │ │ │ ├── hb-label.hbs │ │ │ │ └── hb-link.hbs │ │ ├── empty.hbs │ │ ├── filters.hbs │ │ ├── index.hbs │ │ ├── issue.hbs │ │ ├── issue │ │ │ ├── comment.hbs │ │ │ ├── create.hbs │ │ │ ├── events │ │ │ │ ├── assigned.hbs │ │ │ │ ├── closed.hbs │ │ │ │ ├── demilestoned.hbs │ │ │ │ ├── deployed.hbs │ │ │ │ ├── head-ref-deleted.hbs │ │ │ │ ├── head-ref-restored.hbs │ │ │ │ ├── labeled.hbs │ │ │ │ ├── locked.hbs │ │ │ │ ├── mentioned.hbs │ │ │ │ ├── merged.hbs │ │ │ │ ├── milestoned.hbs │ │ │ │ ├── referenced.hbs │ │ │ │ ├── renamed.hbs │ │ │ │ ├── reopened.hbs │ │ │ │ ├── subscribed.hbs │ │ │ │ ├── unassigned.hbs │ │ │ │ ├── unlabeled.hbs │ │ │ │ ├── unlocked.hbs │ │ │ │ └── unsubscribed.hbs │ │ │ ├── reference.hbs │ │ │ └── reopen.hbs │ │ ├── layouts │ │ │ └── modal.hbs │ │ ├── loading.hbs │ │ ├── milestones.hbs │ │ ├── milestones │ │ │ ├── create.hbs │ │ │ ├── edit.hbs │ │ │ └── missing.hbs │ │ ├── search.hbs │ │ ├── settings.hbs │ │ ├── settings │ │ │ ├── health.hbs │ │ │ ├── index.hbs │ │ │ ├── integrations.hbs │ │ │ ├── integrations │ │ │ │ ├── gitter.hbs │ │ │ │ ├── hipchat.hbs │ │ │ │ ├── index.hbs │ │ │ │ ├── slack.hbs │ │ │ │ └── webhook.hbs │ │ │ ├── keyboard-shortcut-item.hbs │ │ │ ├── links.hbs │ │ │ └── links │ │ │ │ └── index.hbs │ │ └── unauthorized.hbs │ ├── utilities │ │ ├── correlation-id.js │ │ ├── messaging │ │ │ ├── fayeClient.js │ │ │ └── subscription-parsing.js │ │ ├── observers.js │ │ ├── parsing │ │ │ ├── base-parser.js │ │ │ ├── card-relationship-parser.js │ │ │ └── rules │ │ │ │ └── issue-references.js │ │ ├── sorted-queue.js │ │ ├── string │ │ │ └── emoji-parser.js │ │ └── uuid.js │ ├── views │ │ ├── .gitkeep │ │ ├── assignee-filter.js │ │ ├── integrations.js │ │ ├── issue.js │ │ ├── issue │ │ │ ├── activities.js │ │ │ ├── create.js │ │ │ ├── reference.js │ │ │ └── reopen.js │ │ ├── loading.js │ │ ├── milestones.js │ │ ├── milestones │ │ │ ├── create.js │ │ │ ├── edit.js │ │ │ └── missing.js │ │ ├── modal.js │ │ ├── search.js │ │ └── unauthorized.js │ └── visitors │ │ └── issue │ │ └── references.js ├── bower.json ├── config │ ├── deprecation-workflow.js │ └── environment.js ├── ember-cli-build.js ├── package.json ├── public │ ├── crossdomain.xml │ └── robots.txt ├── testem.js ├── testem.json ├── tests │ ├── .jshintrc │ ├── fixtures │ │ ├── issue-html-body.js │ │ └── repo.js │ ├── helpers │ │ ├── destroy-app.js │ │ ├── flash-message.js │ │ ├── module-for-acceptance.js │ │ ├── resolver.js │ │ └── start-app.js │ ├── index.html │ ├── test-helper.js │ └── unit │ │ ├── .gitkeep │ │ ├── components │ │ └── hb-repo-selector-test.js │ │ ├── controllers │ │ └── issue │ │ │ └── reference-test.js │ │ ├── mixins │ │ ├── cards │ │ │ └── card-move-test.js │ │ ├── markdown-parsing-test.js │ │ └── messaging-test.js │ │ ├── services │ │ ├── board-syncing-test.js │ │ ├── browser-session-test.js │ │ ├── filter-groups-test.js │ │ ├── filters-test.js │ │ └── query-params-test.js │ │ ├── utilities │ │ ├── core_extensions │ │ │ └── regexp-test.js │ │ ├── messaging │ │ │ └── subscription-parsing-test.js │ │ ├── parsing │ │ │ ├── base-parser-test.js │ │ │ ├── card-relationship-parser-test.js │ │ │ └── rules │ │ │ │ └── issue-reference-test.js │ │ ├── sorted-queue-test.js │ │ └── string │ │ │ └── emoji-parser-test.js │ │ ├── views │ │ └── issue │ │ │ └── reference-test.js │ │ └── visitors │ │ └── issue │ │ └── references-test.js └── vendor │ ├── .gitkeep │ ├── autoresize.js │ ├── jquery.color.contrast.js │ ├── task-list.js │ └── utilities │ └── core_extensions │ └── regexp.js ├── features.json ├── lib ├── analytics │ ├── core.rb │ └── logger_adapter.rb ├── assets │ └── .keep ├── authorized_team_constraint.rb ├── bridge │ ├── github │ │ ├── assignees.rb │ │ ├── backlog.rb │ │ ├── board.rb │ │ ├── comments.rb │ │ ├── commits.rb │ │ ├── config.rb │ │ ├── contents.rb │ │ ├── hooks.rb │ │ ├── issues.rb │ │ ├── labels.rb │ │ ├── repo.rb │ │ ├── repos.rb │ │ ├── settings.rb │ │ └── user.rb │ ├── huboard.rb │ ├── middleware.rb │ └── middleware │ │ ├── caching.rb │ │ ├── client_id.rb │ │ └── mimetype.rb ├── carrier_wave │ └── storage │ │ └── git_hub.rb ├── core_extensions │ └── string.rb ├── faye │ └── redis │ │ └── publisher.rb ├── health_checking │ ├── board_exam.rb │ ├── dashboard_exam.rb │ ├── doctor.rb │ └── health_checks │ │ ├── board │ │ ├── issue_blocked_label_check.rb │ │ ├── issue_comment_webhook_check.rb │ │ ├── issue_ready_label_check.rb │ │ ├── issues_webhook_check.rb │ │ └── pull_request_webhook_check.rb │ │ ├── github_repo_webhooks_check.rb │ │ └── health_check.rb ├── hu_board │ ├── account_helpers.rb │ ├── couch.rb │ ├── error.rb │ ├── middleware.rb │ ├── middleware │ │ └── session.rb │ ├── services.rb │ └── services │ │ ├── gitter.rb │ │ ├── hip_chat.rb │ │ ├── slack.rb │ │ └── webhook.rb ├── is_publishable.rb ├── job_resolver.rb ├── logged_in_constraint.rb ├── private_pub.rb ├── queries.rb ├── queries │ ├── couch │ │ └── customer.rb │ ├── passthrough.rb │ └── stripe │ │ └── customer.rb ├── query_handler.rb ├── tasks │ ├── .keep │ └── ember-cli.rake ├── uber_dictionary.rb └── use_case │ ├── fetch_board.rb │ └── private_repo.rb ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── assets │ └── github │ │ ├── HuDark@1x.png │ │ ├── HuDark@2x.png │ │ ├── HuLight@1x.png │ │ └── HuLight@2x.png ├── favicon.ico ├── robots.txt └── sitemap.xml ├── puppet ├── local_modules │ ├── nginx │ │ ├── files │ │ │ └── huboard.conf │ │ └── manifests │ │ │ └── init.pp │ └── ruby_install │ │ └── manifests │ │ └── init.pp └── manifests │ └── base.pp ├── script ├── cedar.txt └── loadtest.txt ├── spec ├── lib │ ├── query_handler │ │ └── query_handler_spec.rb │ └── webhooks │ │ ├── fixtures │ │ ├── couch_trial_account_no_trial_key_seed.json │ │ ├── couch_trial_account_seed.json │ │ ├── stripe_sub_no_user.json │ │ ├── stripe_subscription_delete.json │ │ ├── stripe_subscription_update.json │ │ └── stripe_subscription_update_no_trial_key.json │ │ └── stripe │ │ └── stripe_spec.rb └── spec_helper.rb ├── test ├── controllers │ ├── .keep │ ├── api │ │ └── health_controller_test.rb │ └── login_controller_test.rb ├── fixtures │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── lib │ ├── analytics │ │ └── core_test.rb │ ├── bridge │ │ └── content_test.rb │ ├── classy_assumptions_test.rb │ ├── core_extensions │ │ └── string_test.rb │ ├── faye_extensions │ │ └── disconnect_test.rb │ ├── job_resolver_test.rb │ └── uber_dictionary_test.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ └── user_test.rb ├── specs │ └── lib │ │ └── health_checking │ │ ├── doctor_test.rb │ │ ├── exams_test.rb │ │ └── health_checks │ │ ├── board │ │ ├── issue_blocked_label_check_test.rb │ │ └── issue_ready_label_check_test.rb │ │ ├── github_repo_webhooks_check_test.rb │ │ └── health_check_test.rb └── test_helper.rb └── vendor ├── assets ├── javascripts │ └── .keep └── stylesheets │ └── .keep ├── engines └── saas │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── saas │ │ │ │ └── .keep │ │ ├── javascripts │ │ │ └── saas │ │ │ │ └── application.js │ │ └── stylesheets │ │ │ └── saas │ │ │ └── application.css │ ├── controllers │ │ └── saas │ │ │ ├── application_controller.rb │ │ │ ├── cards_controller.rb │ │ │ ├── charges_controller.rb │ │ │ ├── coupons_controller.rb │ │ │ ├── errors_controller.rb │ │ │ ├── invoices_controller.rb │ │ │ ├── plans_controller.rb │ │ │ ├── profiles_controller.rb │ │ │ └── trials_controller.rb │ ├── helpers │ │ └── saas │ │ │ └── application_helper.rb │ ├── jobs │ │ ├── analytics │ │ │ ├── group_owner_job.rb │ │ │ ├── identify_user_job.rb │ │ │ ├── page_job.rb │ │ │ └── track_user_job.rb │ │ ├── analytics_job.rb │ │ ├── base_login_job.rb │ │ ├── login_private_job.rb │ │ ├── login_public_job.rb │ │ ├── saas │ │ │ ├── app │ │ │ │ ├── board_create_job.rb │ │ │ │ └── board_index_job.rb │ │ │ ├── charges_create_job.rb │ │ │ ├── errors_unauthenticated_canceled_job.rb │ │ │ ├── errors_unauthenticated_expired_job.rb │ │ │ ├── errors_unauthenticated_saas_job.rb │ │ │ └── plans_destroy_job.rb │ │ └── users │ │ │ └── create_user_job.rb │ ├── mailers │ │ └── saas │ │ │ ├── application_mailer.rb │ │ │ └── user_onboarding.rb │ └── views │ │ ├── layouts │ │ └── mailer.html.erb │ │ └── saas │ │ ├── errors │ │ ├── unauthenticated_canceled.html.erb │ │ ├── unauthenticated_expired.html.erb │ │ └── unauthenticated_saas.html.erb │ │ ├── invoices │ │ └── show.html.erb │ │ ├── profiles │ │ ├── index.json.jbuilder │ │ ├── show.html.erb │ │ └── user.json.jbuilder │ │ ├── trials │ │ └── show.html.erb │ │ └── user_onboarding │ │ └── welcome_email.html.erb │ ├── bin │ └── rails │ ├── config │ └── routes.rb │ ├── lib │ ├── saas.rb │ ├── saas │ │ ├── before_action.rb │ │ ├── engine.rb │ │ └── version.rb │ └── tasks │ │ └── saas_tasks.rake │ ├── saas.gemspec │ └── test │ ├── dummy │ ├── README.rdoc │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── javascripts │ │ │ │ └── application.js │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ ├── .keep │ │ │ └── concerns │ │ │ │ └── .keep │ │ └── views │ │ │ └── layouts │ │ │ └── application.html.erb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ └── setup │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── routes.rb │ │ └── secrets.yml │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── log │ │ └── .keep │ └── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── favicon.ico │ ├── integration │ └── navigation_test.rb │ ├── mailers │ └── previews │ │ └── user_onboarding_preview.rb │ ├── saas_test.rb │ └── test_helper.rb └── gems └── faye_extensions ├── faye_extensions.gemspec └── lib ├── faye_extensions.rb └── faye_extensions ├── disconnect.rb └── version.rb /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/.buildpacks -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.librarian/.gitattributes: -------------------------------------------------------------------------------- 1 | * eol=lf 2 | -------------------------------------------------------------------------------- /.librarian/puppet/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/.librarian/puppet/config -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/Procfile -------------------------------------------------------------------------------- /Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/Puppetfile -------------------------------------------------------------------------------- /Puppetfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/Puppetfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/Board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/Board.png -------------------------------------------------------------------------------- /app/assets/images/GitHub-Mark-Light-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/GitHub-Mark-Light-32px.png -------------------------------------------------------------------------------- /app/assets/images/Hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/Hu.png -------------------------------------------------------------------------------- /app/assets/images/HuBoardSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/HuBoardSplash.png -------------------------------------------------------------------------------- /app/assets/images/HuBoardSplash960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/HuBoardSplash960.png -------------------------------------------------------------------------------- /app/assets/images/HuboLightP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/HuboLightP.png -------------------------------------------------------------------------------- /app/assets/images/HuboWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/HuboWhite.png -------------------------------------------------------------------------------- /app/assets/images/LogoFullPurpleDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/LogoFullPurpleDark.png -------------------------------------------------------------------------------- /app/assets/images/LogoFullPurpleLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/LogoFullPurpleLight.png -------------------------------------------------------------------------------- /app/assets/images/LogoWhiteFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/LogoWhiteFull.png -------------------------------------------------------------------------------- /app/assets/images/Plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/Plain.png -------------------------------------------------------------------------------- /app/assets/images/ardDarkP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/ardDarkP.png -------------------------------------------------------------------------------- /app/assets/images/ardLightP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/ardLightP.png -------------------------------------------------------------------------------- /app/assets/images/ardWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/ardWhite.png -------------------------------------------------------------------------------- /app/assets/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/arrow.png -------------------------------------------------------------------------------- /app/assets/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/check.png -------------------------------------------------------------------------------- /app/assets/images/credit-cards-@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/credit-cards-@1x.png -------------------------------------------------------------------------------- /app/assets/images/errors/403/403.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403.ai -------------------------------------------------------------------------------- /app/assets/images/errors/403/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403.svg -------------------------------------------------------------------------------- /app/assets/images/errors/403/403_page.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403_page.ai -------------------------------------------------------------------------------- /app/assets/images/errors/403/403_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403_page.png -------------------------------------------------------------------------------- /app/assets/images/errors/403/403_page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403_page.svg -------------------------------------------------------------------------------- /app/assets/images/errors/403/403_policeman.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403_policeman.ai -------------------------------------------------------------------------------- /app/assets/images/errors/403/403_policeman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403_policeman.png -------------------------------------------------------------------------------- /app/assets/images/errors/403/403_policeman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/403/403_policeman.svg -------------------------------------------------------------------------------- /app/assets/images/errors/404/404-thief-782x722.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404/404-thief-782x722.png -------------------------------------------------------------------------------- /app/assets/images/errors/404/404-thief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404/404-thief.svg -------------------------------------------------------------------------------- /app/assets/images/errors/404/404.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404/404.ai -------------------------------------------------------------------------------- /app/assets/images/errors/404/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404/404.svg -------------------------------------------------------------------------------- /app/assets/images/errors/404a/404a-death-766x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404a/404a-death-766x768.png -------------------------------------------------------------------------------- /app/assets/images/errors/404a/404a-death.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404a/404a-death.svg -------------------------------------------------------------------------------- /app/assets/images/errors/404a/404a.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404a/404a.ai -------------------------------------------------------------------------------- /app/assets/images/errors/404a/404a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/404a/404a.svg -------------------------------------------------------------------------------- /app/assets/images/errors/500/500-robot-776x848.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/500/500-robot-776x848.png -------------------------------------------------------------------------------- /app/assets/images/errors/500/500-robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/500/500-robot.svg -------------------------------------------------------------------------------- /app/assets/images/errors/500/500.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/500/500.ai -------------------------------------------------------------------------------- /app/assets/images/errors/500/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/500/500.svg -------------------------------------------------------------------------------- /app/assets/images/errors/503/503-guy-746x777.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/503/503-guy-746x777.png -------------------------------------------------------------------------------- /app/assets/images/errors/503/503-guy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/503/503-guy.svg -------------------------------------------------------------------------------- /app/assets/images/errors/503/503.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/503/503.ai -------------------------------------------------------------------------------- /app/assets/images/errors/503/503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/errors/503/503.svg -------------------------------------------------------------------------------- /app/assets/images/fabric_plaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/fabric_plaid.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/github_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/github_logo.png -------------------------------------------------------------------------------- /app/assets/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /app/assets/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /app/assets/images/headerTransparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/headerTransparent.png -------------------------------------------------------------------------------- /app/assets/images/icn-coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/icn-coupon.png -------------------------------------------------------------------------------- /app/assets/images/icon-download-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/icon-download-2x.png -------------------------------------------------------------------------------- /app/assets/images/icon-print-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/icon-print-2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/DragAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/DragAvatar@2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/Filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/Filter@2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/Integrations@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/Integrations@2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/Kanban@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/Kanban@2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/Prioritize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/Prioritize@2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/avatar.png -------------------------------------------------------------------------------- /app/assets/images/marketing/chris-mcavoy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/chris-mcavoy.jpg -------------------------------------------------------------------------------- /app/assets/images/marketing/faq-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/faq-1.png -------------------------------------------------------------------------------- /app/assets/images/marketing/faq-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/faq-2.png -------------------------------------------------------------------------------- /app/assets/images/marketing/faq-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/faq-3.png -------------------------------------------------------------------------------- /app/assets/images/marketing/faq-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/faq-4.png -------------------------------------------------------------------------------- /app/assets/images/marketing/faq-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/faq-5.png -------------------------------------------------------------------------------- /app/assets/images/marketing/faq-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/faq-6.png -------------------------------------------------------------------------------- /app/assets/images/marketing/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/feature-1.png -------------------------------------------------------------------------------- /app/assets/images/marketing/feature-blank-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/feature-blank-small.png -------------------------------------------------------------------------------- /app/assets/images/marketing/feature-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/feature-blank.png -------------------------------------------------------------------------------- /app/assets/images/marketing/footer-bg--lighthouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/footer-bg--lighthouse.png -------------------------------------------------------------------------------- /app/assets/images/marketing/footer-bg--sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/footer-bg--sea.png -------------------------------------------------------------------------------- /app/assets/images/marketing/header-bg--github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/header-bg--github.png -------------------------------------------------------------------------------- /app/assets/images/marketing/header-bg--hexs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/header-bg--hexs.png -------------------------------------------------------------------------------- /app/assets/images/marketing/header-bg--stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/header-bg--stars.png -------------------------------------------------------------------------------- /app/assets/images/marketing/horizontal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/horizontal@2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/integration--blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/integration--blur.png -------------------------------------------------------------------------------- /app/assets/images/marketing/integration--blur@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/integration--blur@2x.png -------------------------------------------------------------------------------- /app/assets/images/marketing/integration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/integration-1.png -------------------------------------------------------------------------------- /app/assets/images/marketing/integration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/integration-2.png -------------------------------------------------------------------------------- /app/assets/images/marketing/integration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/integration-3.png -------------------------------------------------------------------------------- /app/assets/images/marketing/integration-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/integration-4.png -------------------------------------------------------------------------------- /app/assets/images/marketing/integration-huboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/integration-huboard.png -------------------------------------------------------------------------------- /app/assets/images/marketing/login-form-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/login-form-title.png -------------------------------------------------------------------------------- /app/assets/images/marketing/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/logo.png -------------------------------------------------------------------------------- /app/assets/images/marketing/permissions-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/permissions-read.png -------------------------------------------------------------------------------- /app/assets/images/marketing/permissions-write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/permissions-write.png -------------------------------------------------------------------------------- /app/assets/images/marketing/plan-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/plan-icon-1.png -------------------------------------------------------------------------------- /app/assets/images/marketing/plan-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/plan-icon-2.png -------------------------------------------------------------------------------- /app/assets/images/marketing/plan-icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/plan-icon-3.png -------------------------------------------------------------------------------- /app/assets/images/marketing/select-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/select-arrow.png -------------------------------------------------------------------------------- /app/assets/images/marketing/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/separator.png -------------------------------------------------------------------------------- /app/assets/images/marketing/techstars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/techstars.png -------------------------------------------------------------------------------- /app/assets/images/marketing/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/tick.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--adobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--adobe.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--apple.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--att.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--att.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--carnegie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--carnegie.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--facebook.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--google.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--microsoft.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--mozilla.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--rdio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--rdio.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--shopify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--shopify.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--ted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--ted.png -------------------------------------------------------------------------------- /app/assets/images/marketing/trusted--twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/trusted--twitter.png -------------------------------------------------------------------------------- /app/assets/images/marketing/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/marketing/twitter-icon.png -------------------------------------------------------------------------------- /app/assets/images/mba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/mba.png -------------------------------------------------------------------------------- /app/assets/images/sweet-icons-settings--white-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/sweet-icons-settings--white-32.png -------------------------------------------------------------------------------- /app/assets/images/texture-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/texture-bg.png -------------------------------------------------------------------------------- /app/assets/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/images/x.png -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/application.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/application.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/config/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/config/app.js -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/config/routes.js -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/env.js.erb: -------------------------------------------------------------------------------- 1 | var HuboardEnv = { 2 | stripe_pub_key: '<%= ENV["STRIPE_PUBLISHABLE_API"] %>' 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/helpers/stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/helpers/stripe.js -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/models/org.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/models/org.js -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/models/user.js -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/routes/index_route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/routes/index_route.js -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/templates/account.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/templates/account.hbs -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/templates/history.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/templates/history.hbs -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/templates/index.hbs -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/templates/loading.hbs: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/templates/profile.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/templates/profile.hbs -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/views/loading_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/views/loading_view.js -------------------------------------------------------------------------------- /app/assets/javascripts/accounts/views/modal_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/accounts/views/modal_view.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /app/assets/javascripts/ember/ember-1.0.0-rc.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/ember/ember-1.0.0-rc.6.js -------------------------------------------------------------------------------- /app/assets/javascripts/ember/ember-1.0.0-rc.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/ember/ember-1.0.0-rc.7.js -------------------------------------------------------------------------------- /app/assets/javascripts/ember/ember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/ember/ember.js -------------------------------------------------------------------------------- /app/assets/javascripts/ember/handlebars-1.0.0-rc.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/ember/handlebars-1.0.0-rc.4.js -------------------------------------------------------------------------------- /app/assets/javascripts/ember/handlebars-1.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/ember/handlebars-1.0.0.js -------------------------------------------------------------------------------- /app/assets/javascripts/ember/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/ember/jquery-1.9.1.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery-ui.superSortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/jquery-ui.superSortable.js -------------------------------------------------------------------------------- /app/assets/javascripts/login.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/login.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/marketing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/marketing.js -------------------------------------------------------------------------------- /app/assets/javascripts/marketing/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/marketing/main.js -------------------------------------------------------------------------------- /app/assets/javascripts/marketing/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/marketing/plugins.js -------------------------------------------------------------------------------- /app/assets/javascripts/marketing/vendor/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/marketing/vendor/respond.js -------------------------------------------------------------------------------- /app/assets/javascripts/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/spin.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/backbone.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/ember-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/ember-bootstrap.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/ember-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/ember-data.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/ember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/ember.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/firebugx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/firebugx.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/handlebars.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/jquery-ui.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery.color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/jquery.color.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/jquery.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery.payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/jquery.payment.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/postal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/postal.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/require-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/require-jquery.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/spin.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/javascripts/vendor/underscore.js -------------------------------------------------------------------------------- /app/assets/stylesheets/_account.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_account.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_arrow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_arrow.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_assignees.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_assignees.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_board.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_board.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_boxed-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_boxed-group.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_breadcrumbs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_buttons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_card.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_card_states.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_card_states.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_colors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_credit_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_credit_cards.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_date_picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_date_picker.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_flex_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_flex_form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_font.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_fonts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_integrations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_integrations.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_issue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_issue.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_markdown.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_milestone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_milestone.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_overlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_overlay.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_permissions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_permissions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_repo-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_repo-settings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_repos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_repos.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_scroll.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_scroll.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_section.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_sidebar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_textcomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_textcomplete.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_tooltips.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/_topbar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/application.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bourbon/_bourbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bourbon/_bourbon.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bourbon/addons/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bourbon/addons/_button.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bourbon/css3/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bourbon/css3/_animation.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bourbon/css3/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bourbon/css3/_columns.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bourbon/css3/_flex-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bourbon/css3/_flex-box.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bourbon/css3/_font-face.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bourbon/css3/_font-face.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bourbon/css3/_transform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/bourbon/css3/_transform.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_health.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/components/_health.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/components/_selector.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/css3/_filters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/css3/_filters.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/errors/main.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/errors/main.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/errors/partials/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/errors/partials/layout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/errors/partials/message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/errors/partials/message.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/flex_layout.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/flex_layout.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/login.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/marketing.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/marketing.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/marketing/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/marketing/main.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/marketing/modules/_fonts.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Fonts 3 | */ 4 | 5 | -------------------------------------------------------------------------------- /app/assets/stylesheets/marketing/partials/_content.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Page/post content 3 | */ 4 | 5 | -------------------------------------------------------------------------------- /app/assets/stylesheets/marketing/partials/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/marketing/partials/_faq.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/splash.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/splash.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/assets/stylesheets/style.css -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/board_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/board_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/columns_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/columns_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/health_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/health_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/integrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/integrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/issues_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/issues_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/links_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/links_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/milestones_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/milestones_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/repos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/repos_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/subscriptions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/subscriptions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/uploads_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/uploads_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/webhooks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/api/webhooks_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/board_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/board_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/login_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/login_controller.rb -------------------------------------------------------------------------------- /app/controllers/marketing_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/marketing_controller.rb -------------------------------------------------------------------------------- /app/controllers/site_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/site_controller.rb -------------------------------------------------------------------------------- /app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/controllers/welcome_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_archive_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_archive_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_assign_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_assign_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_assign_milestone_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_assign_milestone_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_block_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_block_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_close_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_close_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_create_comment_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_create_comment_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_drag_card_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_drag_card_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_edit_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_edit_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_label_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_label_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_milestone_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_milestone_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_open_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_open_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_ready_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_ready_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_reopen_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_reopen_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_status_changed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_status_changed_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_unassign_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_unassign_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_unblock_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_unblock_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_unlabel_issue_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_unlabel_issue_job.rb -------------------------------------------------------------------------------- /app/jobs/api/issues_unready_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/issues_unready_job.rb -------------------------------------------------------------------------------- /app/jobs/api/milestones_create_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/milestones_create_job.rb -------------------------------------------------------------------------------- /app/jobs/api/milestones_reorder_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/api/milestones_reorder_job.rb -------------------------------------------------------------------------------- /app/jobs/cached_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/cached_job.rb -------------------------------------------------------------------------------- /app/jobs/issue_event_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/issue_event_job.rb -------------------------------------------------------------------------------- /app/jobs/milestone_event_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/milestone_event_job.rb -------------------------------------------------------------------------------- /app/jobs/publish_webhook_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/jobs/publish_webhook_job.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/uploaders/api_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/uploaders/api_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/asset_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/uploaders/asset_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/aws_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/uploaders/aws_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/local_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/uploaders/local_uploader.rb -------------------------------------------------------------------------------- /app/views/application/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/application/index.html.erb -------------------------------------------------------------------------------- /app/views/board/create_board.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/board/create_board.html.erb -------------------------------------------------------------------------------- /app/views/board/enable_issues.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/board/enable_issues.html.erb -------------------------------------------------------------------------------- /app/views/board/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/board/index.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_repo_filters.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/dashboard/_repo_filters.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_vcard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/dashboard/_vcard.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/dashboard/index.html.erb -------------------------------------------------------------------------------- /app/views/errors/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/errors/not_found.html.erb -------------------------------------------------------------------------------- /app/views/errors/not_found_b.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/errors/not_found_b.html.erb -------------------------------------------------------------------------------- /app/views/errors/server_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/errors/server_error.html.erb -------------------------------------------------------------------------------- /app/views/errors/unauthenticated.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/errors/unauthenticated.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/ember.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/layouts/ember.html.erb -------------------------------------------------------------------------------- /app/views/layouts/marketing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/layouts/marketing.html.erb -------------------------------------------------------------------------------- /app/views/login/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/login/index.html.erb -------------------------------------------------------------------------------- /app/views/marketing/index.html.erb: -------------------------------------------------------------------------------- 1 |

Login

2 | -------------------------------------------------------------------------------- /app/views/marketing/integrations.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/marketing/integrations.html.erb -------------------------------------------------------------------------------- /app/views/marketing/marketing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/marketing/marketing.html.erb -------------------------------------------------------------------------------- /app/views/marketing/pricing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/marketing/pricing.html.erb -------------------------------------------------------------------------------- /app/views/shared/_abtest.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/shared/_abtest.html.erb -------------------------------------------------------------------------------- /app/views/shared/_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/shared/_analytics.html.erb -------------------------------------------------------------------------------- /app/views/shared/_fontdeck.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/shared/_fontdeck.html.erb -------------------------------------------------------------------------------- /app/views/shared/_footer_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/shared/_footer_nav.html.erb -------------------------------------------------------------------------------- /app/views/shared/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/shared/_header.html.erb -------------------------------------------------------------------------------- /app/views/shared/_logged_in.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/shared/_logged_in.html.erb -------------------------------------------------------------------------------- /app/views/site/privacy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/site/privacy.html.erb -------------------------------------------------------------------------------- /app/views/site/terms.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/site/terms.html.erb -------------------------------------------------------------------------------- /app/views/welcome/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/app/views/welcome/index.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/bin/spring -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/cache.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/carrierwave.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/database_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/database_connection.rb -------------------------------------------------------------------------------- /config/initializers/ember.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/ember.rb -------------------------------------------------------------------------------- /config/initializers/faye.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/faye.rb -------------------------------------------------------------------------------- /config/initializers/features.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/features.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/preview_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/preview_interceptor.rb -------------------------------------------------------------------------------- /config/initializers/query_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/query_handler.rb -------------------------------------------------------------------------------- /config/initializers/rack-attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/rack-attack.rb -------------------------------------------------------------------------------- /config/initializers/raygun.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/raygun.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/socket_backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/socket_backend.rb -------------------------------------------------------------------------------- /config/initializers/warden.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/warden.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /couch/_design/Customers/views/findByOrgId/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Customers/views/findByOrgId/map.js -------------------------------------------------------------------------------- /couch/_design/Customers/views/findByUserId/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Customers/views/findByUserId/map.js -------------------------------------------------------------------------------- /couch/_design/Repos/language.js: -------------------------------------------------------------------------------- 1 | javascript -------------------------------------------------------------------------------- /couch/_design/Repos/views/issueCounts/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Repos/views/issueCounts/map.js -------------------------------------------------------------------------------- /couch/_design/Repos/views/privateOrPublic/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Repos/views/privateOrPublic/map.js -------------------------------------------------------------------------------- /couch/_design/Users/language.js: -------------------------------------------------------------------------------- 1 | javascript -------------------------------------------------------------------------------- /couch/_design/Users/views/byEmail/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Users/views/byEmail/map.js -------------------------------------------------------------------------------- /couch/_design/Users/views/byPlan/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Users/views/byPlan/map.js -------------------------------------------------------------------------------- /couch/_design/Users/views/byType/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Users/views/byType/map.js -------------------------------------------------------------------------------- /couch/_design/Users/views/userOrOrg/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/_design/Users/views/userOrOrg/map.js -------------------------------------------------------------------------------- /couch/app/app_customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/app/app_customers.js -------------------------------------------------------------------------------- /couch/app/app_integrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/app/app_integrations.js -------------------------------------------------------------------------------- /couch/app/app_plans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/app/app_plans.js -------------------------------------------------------------------------------- /couch/app/app_stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/app/app_stats.js -------------------------------------------------------------------------------- /couch/app/app_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/app/app_test.js -------------------------------------------------------------------------------- /couch/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/app/package.json -------------------------------------------------------------------------------- /couch/debug/app_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/couch/debug/app_users.js -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /ember-accounts/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/.editorconfig -------------------------------------------------------------------------------- /ember-accounts/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/.ember-cli -------------------------------------------------------------------------------- /ember-accounts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/.gitignore -------------------------------------------------------------------------------- /ember-accounts/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/.jshintrc -------------------------------------------------------------------------------- /ember-accounts/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /ember-accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/README.md -------------------------------------------------------------------------------- /ember-accounts/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/app.js -------------------------------------------------------------------------------- /ember-accounts/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/app/components/apply-coupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/apply-coupon.js -------------------------------------------------------------------------------- /ember-accounts/app/components/cancel-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/cancel-form.js -------------------------------------------------------------------------------- /ember-accounts/app/components/card-expiry-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/card-expiry-field.js -------------------------------------------------------------------------------- /ember-accounts/app/components/card-number-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/card-number-field.js -------------------------------------------------------------------------------- /ember-accounts/app/components/coupon-checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/coupon-checkbox.js -------------------------------------------------------------------------------- /ember-accounts/app/components/coupon-code-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/coupon-code-field.js -------------------------------------------------------------------------------- /ember-accounts/app/components/credit-card-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/credit-card-form.js -------------------------------------------------------------------------------- /ember-accounts/app/components/cvc-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/cvc-field.js -------------------------------------------------------------------------------- /ember-accounts/app/components/purchase-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/purchase-form.js -------------------------------------------------------------------------------- /ember-accounts/app/components/update-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/update-card.js -------------------------------------------------------------------------------- /ember-accounts/app/components/update-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/update-email.js -------------------------------------------------------------------------------- /ember-accounts/app/components/x-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/x-account.js -------------------------------------------------------------------------------- /ember-accounts/app/components/x-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/x-history.js -------------------------------------------------------------------------------- /ember-accounts/app/components/x-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/x-loading.js -------------------------------------------------------------------------------- /ember-accounts/app/components/x-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/components/x-modal.js -------------------------------------------------------------------------------- /ember-accounts/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/app/controllers/user-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/controllers/user-profile.js -------------------------------------------------------------------------------- /ember-accounts/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/app/helpers/asset-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/helpers/asset-path.js -------------------------------------------------------------------------------- /ember-accounts/app/helpers/stripe-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/helpers/stripe-date.js -------------------------------------------------------------------------------- /ember-accounts/app/helpers/stripe-money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/helpers/stripe-money.js -------------------------------------------------------------------------------- /ember-accounts/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/index.html -------------------------------------------------------------------------------- /ember-accounts/app/mixins/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/mixins/analytics.js -------------------------------------------------------------------------------- /ember-accounts/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/app/models/organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/models/organization.js -------------------------------------------------------------------------------- /ember-accounts/app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/models/user.js -------------------------------------------------------------------------------- /ember-accounts/app/overrides/text-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/overrides/text-support.js -------------------------------------------------------------------------------- /ember-accounts/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/router.js -------------------------------------------------------------------------------- /ember-accounts/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/routes/application.js -------------------------------------------------------------------------------- /ember-accounts/app/routes/not-authorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/routes/not-authorized.js -------------------------------------------------------------------------------- /ember-accounts/app/routes/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/routes/settings.js -------------------------------------------------------------------------------- /ember-accounts/app/routes/settings/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/routes/settings/profile.js -------------------------------------------------------------------------------- /ember-accounts/app/routes/settings/user-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/routes/settings/user-profile.js -------------------------------------------------------------------------------- /ember-accounts/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/card-expiry-field.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/card-number-field.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/coupon-checkbox.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/coupon-code-field.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/credit-card-form.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/cvc-field.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/x-loading.hbs: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/components/x-modal.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/templates/components/x-modal.hbs -------------------------------------------------------------------------------- /ember-accounts/app/templates/loading.hbs: -------------------------------------------------------------------------------- 1 | {{x-loading}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/not-authorized.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/templates/not-authorized.hbs -------------------------------------------------------------------------------- /ember-accounts/app/templates/settings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/templates/settings.hbs -------------------------------------------------------------------------------- /ember-accounts/app/templates/settings/loading.hbs: -------------------------------------------------------------------------------- 1 | {{x-loading}} 2 | -------------------------------------------------------------------------------- /ember-accounts/app/templates/settings/profile.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/templates/settings/profile.hbs -------------------------------------------------------------------------------- /ember-accounts/app/utils/animate-modal-close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/utils/animate-modal-close.js -------------------------------------------------------------------------------- /ember-accounts/app/utils/animate-modal-open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/app/utils/animate-modal-open.js -------------------------------------------------------------------------------- /ember-accounts/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/bower.json -------------------------------------------------------------------------------- /ember-accounts/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/config/environment.js -------------------------------------------------------------------------------- /ember-accounts/ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/ember-cli-build.js -------------------------------------------------------------------------------- /ember-accounts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/package.json -------------------------------------------------------------------------------- /ember-accounts/public/assets/images/Plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/public/assets/images/Plain.png -------------------------------------------------------------------------------- /ember-accounts/public/assets/images/icn-coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/public/assets/images/icn-coupon.png -------------------------------------------------------------------------------- /ember-accounts/public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/public/crossdomain.xml -------------------------------------------------------------------------------- /ember-accounts/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /ember-accounts/testem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/testem.json -------------------------------------------------------------------------------- /ember-accounts/tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/.jshintrc -------------------------------------------------------------------------------- /ember-accounts/tests/helpers/destroy-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/helpers/destroy-app.js -------------------------------------------------------------------------------- /ember-accounts/tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/helpers/resolver.js -------------------------------------------------------------------------------- /ember-accounts/tests/helpers/start-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/helpers/start-app.js -------------------------------------------------------------------------------- /ember-accounts/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/index.html -------------------------------------------------------------------------------- /ember-accounts/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/test-helper.js -------------------------------------------------------------------------------- /ember-accounts/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-accounts/tests/unit/models/user-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/unit/models/user-test.js -------------------------------------------------------------------------------- /ember-accounts/tests/unit/routes/profile-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/unit/routes/profile-test.js -------------------------------------------------------------------------------- /ember-accounts/tests/unit/routes/settings-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-accounts/tests/unit/routes/settings-test.js -------------------------------------------------------------------------------- /ember-accounts/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/.editorconfig -------------------------------------------------------------------------------- /ember-app/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/.ember-cli -------------------------------------------------------------------------------- /ember-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/.gitignore -------------------------------------------------------------------------------- /ember-app/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/.jshintrc -------------------------------------------------------------------------------- /ember-app/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/.travis.yml -------------------------------------------------------------------------------- /ember-app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /ember-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/README.md -------------------------------------------------------------------------------- /ember-app/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/app.js -------------------------------------------------------------------------------- /ember-app/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/components/columns/hb-column-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/columns/hb-column-count.js -------------------------------------------------------------------------------- /ember-app/app/components/columns/hb-column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/columns/hb-column.js -------------------------------------------------------------------------------- /ember-app/app/components/columns/hb-milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/columns/hb-milestone.js -------------------------------------------------------------------------------- /ember-app/app/components/columns/hb-quick-issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/columns/hb-quick-issue.js -------------------------------------------------------------------------------- /ember-app/app/components/columns/hb-task-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/columns/hb-task-header.js -------------------------------------------------------------------------------- /ember-app/app/components/flash/hb-flash-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/flash/hb-flash-message.js -------------------------------------------------------------------------------- /ember-app/app/components/flash/hb-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/flash/hb-message.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-assignee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-assignee.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-avatar-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-avatar-tooltip.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-avatar.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-board-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-board-columns.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-card-tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-card-tray.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-column-crumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-column-crumb.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-date-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-date-picker.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-filter-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-filter-group.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-filter.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-label-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-label-selector.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-label.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-markdown-composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-markdown-composer.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-markdown-editor.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-milestone-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-milestone-card.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-milestone-drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-milestone-drag.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-milestone.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-multi-assignee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-multi-assignee.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-pane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-pane.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-repo-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-repo-selector.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-selected-column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-selected-column.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-spinner.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-tabs.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-task-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-task-card.js -------------------------------------------------------------------------------- /ember-app/app/components/hb-task-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/hb-task-list.js -------------------------------------------------------------------------------- /ember-app/app/components/issue/hb-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/issue/hb-body.js -------------------------------------------------------------------------------- /ember-app/app/components/issue/hb-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/issue/hb-title.js -------------------------------------------------------------------------------- /ember-app/app/components/settings/hb-health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/settings/hb-health.js -------------------------------------------------------------------------------- /ember-app/app/components/settings/hb-label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/settings/hb-label.js -------------------------------------------------------------------------------- /ember-app/app/components/settings/hb-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/components/settings/hb-link.js -------------------------------------------------------------------------------- /ember-app/app/config/animate-modal-close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/config/animate-modal-close.js -------------------------------------------------------------------------------- /ember-app/app/config/animate-modal-open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/config/animate-modal-open.js -------------------------------------------------------------------------------- /ember-app/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/application.js -------------------------------------------------------------------------------- /ember-app/app/controllers/assignee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/assignee.js -------------------------------------------------------------------------------- /ember-app/app/controllers/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/filters.js -------------------------------------------------------------------------------- /ember-app/app/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/index.js -------------------------------------------------------------------------------- /ember-app/app/controllers/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/issue.js -------------------------------------------------------------------------------- /ember-app/app/controllers/issue/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/issue/create.js -------------------------------------------------------------------------------- /ember-app/app/controllers/issue/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/issue/reference.js -------------------------------------------------------------------------------- /ember-app/app/controllers/issue/reopen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/issue/reopen.js -------------------------------------------------------------------------------- /ember-app/app/controllers/milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/milestones.js -------------------------------------------------------------------------------- /ember-app/app/controllers/milestones/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/milestones/create.js -------------------------------------------------------------------------------- /ember-app/app/controllers/milestones/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/milestones/edit.js -------------------------------------------------------------------------------- /ember-app/app/controllers/milestones/missing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/milestones/missing.js -------------------------------------------------------------------------------- /ember-app/app/controllers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/search.js -------------------------------------------------------------------------------- /ember-app/app/controllers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/settings.js -------------------------------------------------------------------------------- /ember-app/app/controllers/settings/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/settings/health.js -------------------------------------------------------------------------------- /ember-app/app/controllers/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/settings/index.js -------------------------------------------------------------------------------- /ember-app/app/controllers/settings/integrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/settings/integrations.js -------------------------------------------------------------------------------- /ember-app/app/controllers/settings/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/settings/links.js -------------------------------------------------------------------------------- /ember-app/app/controllers/settings/links/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/settings/links/index.js -------------------------------------------------------------------------------- /ember-app/app/controllers/unauthorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/controllers/unauthorized.js -------------------------------------------------------------------------------- /ember-app/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/helpers/asset-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/helpers/asset-path.js -------------------------------------------------------------------------------- /ember-app/app/helpers/avatar-zindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/helpers/avatar-zindex.js -------------------------------------------------------------------------------- /ember-app/app/helpers/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/helpers/concat.js -------------------------------------------------------------------------------- /ember-app/app/helpers/object-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/helpers/object-value.js -------------------------------------------------------------------------------- /ember-app/app/helpers/repo-color-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/helpers/repo-color-style.js -------------------------------------------------------------------------------- /ember-app/app/helpers/selected-label-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/helpers/selected-label-style.js -------------------------------------------------------------------------------- /ember-app/app/helpers/truncate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/helpers/truncate.js -------------------------------------------------------------------------------- /ember-app/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/index.html -------------------------------------------------------------------------------- /ember-app/app/initializers/browser-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/initializers/browser-session.js -------------------------------------------------------------------------------- /ember-app/app/initializers/deferReadiness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/initializers/deferReadiness.js -------------------------------------------------------------------------------- /ember-app/app/initializers/punch-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/initializers/punch-component.js -------------------------------------------------------------------------------- /ember-app/app/initializers/punch-link-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/initializers/punch-link-component.js -------------------------------------------------------------------------------- /ember-app/app/initializers/punch-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/initializers/punch-router.js -------------------------------------------------------------------------------- /ember-app/app/initializers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/initializers/settings.js -------------------------------------------------------------------------------- /ember-app/app/initializers/sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/initializers/sockets.js -------------------------------------------------------------------------------- /ember-app/app/mixins/buffered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/buffered.js -------------------------------------------------------------------------------- /ember-app/app/mixins/cards/card-move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/cards/card-move.js -------------------------------------------------------------------------------- /ember-app/app/mixins/cards/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/cards/sortable.js -------------------------------------------------------------------------------- /ember-app/app/mixins/issue-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/issue-filters.js -------------------------------------------------------------------------------- /ember-app/app/mixins/key-press-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/key-press-handling.js -------------------------------------------------------------------------------- /ember-app/app/mixins/markdown-parsing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/markdown-parsing.js -------------------------------------------------------------------------------- /ember-app/app/mixins/member-drag-and-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/member-drag-and-drop.js -------------------------------------------------------------------------------- /ember-app/app/mixins/messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/messaging.js -------------------------------------------------------------------------------- /ember-app/app/mixins/scrolling/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/scrolling/column.js -------------------------------------------------------------------------------- /ember-app/app/mixins/serializable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/serializable.js -------------------------------------------------------------------------------- /ember-app/app/mixins/subscriptions/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/subscriptions/board.js -------------------------------------------------------------------------------- /ember-app/app/mixins/subscriptions/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/subscriptions/card.js -------------------------------------------------------------------------------- /ember-app/app/mixins/subscriptions/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/subscriptions/issue.js -------------------------------------------------------------------------------- /ember-app/app/mixins/subscriptions/milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/mixins/subscriptions/milestone.js -------------------------------------------------------------------------------- /ember-app/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/models/forms/create-issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/forms/create-issue.js -------------------------------------------------------------------------------- /ember-app/app/models/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/global.js -------------------------------------------------------------------------------- /ember-app/app/models/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/health.js -------------------------------------------------------------------------------- /ember-app/app/models/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/integration.js -------------------------------------------------------------------------------- /ember-app/app/models/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/link.js -------------------------------------------------------------------------------- /ember-app/app/models/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/model.js -------------------------------------------------------------------------------- /ember-app/app/models/new/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/new/board.js -------------------------------------------------------------------------------- /ember-app/app/models/new/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/new/column.js -------------------------------------------------------------------------------- /ember-app/app/models/new/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/new/issue.js -------------------------------------------------------------------------------- /ember-app/app/models/new/milestone-column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/new/milestone-column.js -------------------------------------------------------------------------------- /ember-app/app/models/new/milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/new/milestone.js -------------------------------------------------------------------------------- /ember-app/app/models/new/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/new/repo.js -------------------------------------------------------------------------------- /ember-app/app/models/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/models/settings.js -------------------------------------------------------------------------------- /ember-app/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/resolver.js -------------------------------------------------------------------------------- /ember-app/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/router.js -------------------------------------------------------------------------------- /ember-app/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/application.js -------------------------------------------------------------------------------- /ember-app/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/index.js -------------------------------------------------------------------------------- /ember-app/app/routes/index/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/index/issue.js -------------------------------------------------------------------------------- /ember-app/app/routes/index/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/index/loading.js -------------------------------------------------------------------------------- /ember-app/app/routes/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/issue.js -------------------------------------------------------------------------------- /ember-app/app/routes/milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/milestones.js -------------------------------------------------------------------------------- /ember-app/app/routes/milestones/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/milestones/issue.js -------------------------------------------------------------------------------- /ember-app/app/routes/milestones/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/milestones/loading.js -------------------------------------------------------------------------------- /ember-app/app/routes/milestones/missing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/milestones/missing.js -------------------------------------------------------------------------------- /ember-app/app/routes/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/settings.js -------------------------------------------------------------------------------- /ember-app/app/routes/settings/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/settings/health.js -------------------------------------------------------------------------------- /ember-app/app/routes/settings/integrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/settings/integrations.js -------------------------------------------------------------------------------- /ember-app/app/routes/settings/integrations/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/settings/integrations/new.js -------------------------------------------------------------------------------- /ember-app/app/routes/settings/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/settings/links.js -------------------------------------------------------------------------------- /ember-app/app/routes/sync-issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/routes/sync-issues.js -------------------------------------------------------------------------------- /ember-app/app/services/board-syncing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/board-syncing.js -------------------------------------------------------------------------------- /ember-app/app/services/browser-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/browser-session.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/board.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/card.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/column.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/label.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/member.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/milestone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/milestone.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/search.js -------------------------------------------------------------------------------- /ember-app/app/services/filter-groups/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filter-groups/user.js -------------------------------------------------------------------------------- /ember-app/app/services/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/filters.js -------------------------------------------------------------------------------- /ember-app/app/services/query-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/services/query-params.js -------------------------------------------------------------------------------- /ember-app/app/styles/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/application.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/assignee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/assignee.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/assignee/filter.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/assignee/filter.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-assignee.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-assignee.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-avatar.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-card-tray.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-filter.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-filter.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-label.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-label.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-milestone.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-milestone.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-pane.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-spinner.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-spinner.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-tabs.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-tabs.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-task-card.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-task-card.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/components/hb-task-list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/components/hb-task-list.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/empty.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/filters.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/filters.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/index.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue/comment.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue/comment.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue/create.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue/create.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/assigned.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/closed.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue/events/closed.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/demilestoned.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/deployed.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/head-ref-deleted.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/head-ref-restored.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/labeled.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/locked.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/mentioned.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/merged.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/milestoned.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/referenced.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue/events/referenced.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/renamed.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/reopened.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue/events/reopened.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/subscribed.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/unassigned.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/unlabeled.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/unlocked.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/events/unsubscribed.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/templates/issue/reference.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue/reference.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/issue/reopen.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/issue/reopen.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/layouts/modal.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/layouts/modal.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/loading.hbs: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /ember-app/app/templates/milestones.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/milestones.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/milestones/create.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/milestones/create.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/milestones/edit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/milestones/edit.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/milestones/missing.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/milestones/missing.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/search.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/search.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/settings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/settings.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/settings/health.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/settings/health.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/settings/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/settings/index.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/settings/integrations.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/settings/integrations.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/settings/links.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/settings/links.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/settings/links/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/settings/links/index.hbs -------------------------------------------------------------------------------- /ember-app/app/templates/unauthorized.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/templates/unauthorized.hbs -------------------------------------------------------------------------------- /ember-app/app/utilities/correlation-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/utilities/correlation-id.js -------------------------------------------------------------------------------- /ember-app/app/utilities/messaging/fayeClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/utilities/messaging/fayeClient.js -------------------------------------------------------------------------------- /ember-app/app/utilities/observers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/utilities/observers.js -------------------------------------------------------------------------------- /ember-app/app/utilities/parsing/base-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/utilities/parsing/base-parser.js -------------------------------------------------------------------------------- /ember-app/app/utilities/sorted-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/utilities/sorted-queue.js -------------------------------------------------------------------------------- /ember-app/app/utilities/string/emoji-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/utilities/string/emoji-parser.js -------------------------------------------------------------------------------- /ember-app/app/utilities/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/utilities/uuid.js -------------------------------------------------------------------------------- /ember-app/app/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/app/views/assignee-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/assignee-filter.js -------------------------------------------------------------------------------- /ember-app/app/views/integrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/integrations.js -------------------------------------------------------------------------------- /ember-app/app/views/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/issue.js -------------------------------------------------------------------------------- /ember-app/app/views/issue/activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/issue/activities.js -------------------------------------------------------------------------------- /ember-app/app/views/issue/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/issue/create.js -------------------------------------------------------------------------------- /ember-app/app/views/issue/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/issue/reference.js -------------------------------------------------------------------------------- /ember-app/app/views/issue/reopen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/issue/reopen.js -------------------------------------------------------------------------------- /ember-app/app/views/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/loading.js -------------------------------------------------------------------------------- /ember-app/app/views/milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/milestones.js -------------------------------------------------------------------------------- /ember-app/app/views/milestones/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/milestones/create.js -------------------------------------------------------------------------------- /ember-app/app/views/milestones/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/milestones/edit.js -------------------------------------------------------------------------------- /ember-app/app/views/milestones/missing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/milestones/missing.js -------------------------------------------------------------------------------- /ember-app/app/views/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/modal.js -------------------------------------------------------------------------------- /ember-app/app/views/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/search.js -------------------------------------------------------------------------------- /ember-app/app/views/unauthorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/views/unauthorized.js -------------------------------------------------------------------------------- /ember-app/app/visitors/issue/references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/app/visitors/issue/references.js -------------------------------------------------------------------------------- /ember-app/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/bower.json -------------------------------------------------------------------------------- /ember-app/config/deprecation-workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/config/deprecation-workflow.js -------------------------------------------------------------------------------- /ember-app/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/config/environment.js -------------------------------------------------------------------------------- /ember-app/ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/ember-cli-build.js -------------------------------------------------------------------------------- /ember-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/package.json -------------------------------------------------------------------------------- /ember-app/public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/public/crossdomain.xml -------------------------------------------------------------------------------- /ember-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /ember-app/testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/testem.js -------------------------------------------------------------------------------- /ember-app/testem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/testem.json -------------------------------------------------------------------------------- /ember-app/tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/.jshintrc -------------------------------------------------------------------------------- /ember-app/tests/fixtures/issue-html-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/fixtures/issue-html-body.js -------------------------------------------------------------------------------- /ember-app/tests/fixtures/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/fixtures/repo.js -------------------------------------------------------------------------------- /ember-app/tests/helpers/destroy-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/helpers/destroy-app.js -------------------------------------------------------------------------------- /ember-app/tests/helpers/flash-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/helpers/flash-message.js -------------------------------------------------------------------------------- /ember-app/tests/helpers/module-for-acceptance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/helpers/module-for-acceptance.js -------------------------------------------------------------------------------- /ember-app/tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/helpers/resolver.js -------------------------------------------------------------------------------- /ember-app/tests/helpers/start-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/helpers/start-app.js -------------------------------------------------------------------------------- /ember-app/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/index.html -------------------------------------------------------------------------------- /ember-app/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/test-helper.js -------------------------------------------------------------------------------- /ember-app/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/tests/unit/mixins/cards/card-move-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/mixins/cards/card-move-test.js -------------------------------------------------------------------------------- /ember-app/tests/unit/mixins/messaging-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/mixins/messaging-test.js -------------------------------------------------------------------------------- /ember-app/tests/unit/services/board-syncing-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/services/board-syncing-test.js -------------------------------------------------------------------------------- /ember-app/tests/unit/services/filter-groups-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/services/filter-groups-test.js -------------------------------------------------------------------------------- /ember-app/tests/unit/services/filters-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/services/filters-test.js -------------------------------------------------------------------------------- /ember-app/tests/unit/services/query-params-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/services/query-params-test.js -------------------------------------------------------------------------------- /ember-app/tests/unit/utilities/sorted-queue-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/utilities/sorted-queue-test.js -------------------------------------------------------------------------------- /ember-app/tests/unit/views/issue/reference-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/tests/unit/views/issue/reference-test.js -------------------------------------------------------------------------------- /ember-app/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ember-app/vendor/autoresize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/vendor/autoresize.js -------------------------------------------------------------------------------- /ember-app/vendor/jquery.color.contrast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/vendor/jquery.color.contrast.js -------------------------------------------------------------------------------- /ember-app/vendor/task-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/ember-app/vendor/task-list.js -------------------------------------------------------------------------------- /features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/features.json -------------------------------------------------------------------------------- /lib/analytics/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/analytics/core.rb -------------------------------------------------------------------------------- /lib/analytics/logger_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/analytics/logger_adapter.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/authorized_team_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/authorized_team_constraint.rb -------------------------------------------------------------------------------- /lib/bridge/github/assignees.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/assignees.rb -------------------------------------------------------------------------------- /lib/bridge/github/backlog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/backlog.rb -------------------------------------------------------------------------------- /lib/bridge/github/board.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/board.rb -------------------------------------------------------------------------------- /lib/bridge/github/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/comments.rb -------------------------------------------------------------------------------- /lib/bridge/github/commits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/commits.rb -------------------------------------------------------------------------------- /lib/bridge/github/config.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bridge/github/contents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/contents.rb -------------------------------------------------------------------------------- /lib/bridge/github/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/hooks.rb -------------------------------------------------------------------------------- /lib/bridge/github/issues.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/issues.rb -------------------------------------------------------------------------------- /lib/bridge/github/labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/labels.rb -------------------------------------------------------------------------------- /lib/bridge/github/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/repo.rb -------------------------------------------------------------------------------- /lib/bridge/github/repos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/repos.rb -------------------------------------------------------------------------------- /lib/bridge/github/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/settings.rb -------------------------------------------------------------------------------- /lib/bridge/github/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/github/user.rb -------------------------------------------------------------------------------- /lib/bridge/huboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/huboard.rb -------------------------------------------------------------------------------- /lib/bridge/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/middleware.rb -------------------------------------------------------------------------------- /lib/bridge/middleware/caching.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/middleware/caching.rb -------------------------------------------------------------------------------- /lib/bridge/middleware/client_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/middleware/client_id.rb -------------------------------------------------------------------------------- /lib/bridge/middleware/mimetype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/bridge/middleware/mimetype.rb -------------------------------------------------------------------------------- /lib/carrier_wave/storage/git_hub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/carrier_wave/storage/git_hub.rb -------------------------------------------------------------------------------- /lib/core_extensions/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/core_extensions/string.rb -------------------------------------------------------------------------------- /lib/faye/redis/publisher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/faye/redis/publisher.rb -------------------------------------------------------------------------------- /lib/health_checking/board_exam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/health_checking/board_exam.rb -------------------------------------------------------------------------------- /lib/health_checking/dashboard_exam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/health_checking/dashboard_exam.rb -------------------------------------------------------------------------------- /lib/health_checking/doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/health_checking/doctor.rb -------------------------------------------------------------------------------- /lib/health_checking/health_checks/health_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/health_checking/health_checks/health_check.rb -------------------------------------------------------------------------------- /lib/hu_board/account_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/account_helpers.rb -------------------------------------------------------------------------------- /lib/hu_board/couch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/couch.rb -------------------------------------------------------------------------------- /lib/hu_board/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/error.rb -------------------------------------------------------------------------------- /lib/hu_board/middleware.rb: -------------------------------------------------------------------------------- 1 | require_relative 'middleware/session' 2 | -------------------------------------------------------------------------------- /lib/hu_board/middleware/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/middleware/session.rb -------------------------------------------------------------------------------- /lib/hu_board/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/services.rb -------------------------------------------------------------------------------- /lib/hu_board/services/gitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/services/gitter.rb -------------------------------------------------------------------------------- /lib/hu_board/services/hip_chat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/services/hip_chat.rb -------------------------------------------------------------------------------- /lib/hu_board/services/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/services/slack.rb -------------------------------------------------------------------------------- /lib/hu_board/services/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/hu_board/services/webhook.rb -------------------------------------------------------------------------------- /lib/is_publishable.rb: -------------------------------------------------------------------------------- 1 | ## Marker interface for services 2 | module IsPublishable; end 3 | 4 | -------------------------------------------------------------------------------- /lib/job_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/job_resolver.rb -------------------------------------------------------------------------------- /lib/logged_in_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/logged_in_constraint.rb -------------------------------------------------------------------------------- /lib/private_pub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/private_pub.rb -------------------------------------------------------------------------------- /lib/queries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/queries.rb -------------------------------------------------------------------------------- /lib/queries/couch/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/queries/couch/customer.rb -------------------------------------------------------------------------------- /lib/queries/passthrough.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/queries/passthrough.rb -------------------------------------------------------------------------------- /lib/queries/stripe/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/queries/stripe/customer.rb -------------------------------------------------------------------------------- /lib/query_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/query_handler.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/ember-cli.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/tasks/ember-cli.rake -------------------------------------------------------------------------------- /lib/uber_dictionary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/uber_dictionary.rb -------------------------------------------------------------------------------- /lib/use_case/fetch_board.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/use_case/fetch_board.rb -------------------------------------------------------------------------------- /lib/use_case/private_repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/lib/use_case/private_repo.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/500.html -------------------------------------------------------------------------------- /public/assets/github/HuDark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/assets/github/HuDark@1x.png -------------------------------------------------------------------------------- /public/assets/github/HuDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/assets/github/HuDark@2x.png -------------------------------------------------------------------------------- /public/assets/github/HuLight@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/assets/github/HuLight@1x.png -------------------------------------------------------------------------------- /public/assets/github/HuLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/assets/github/HuLight@2x.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /puppet/local_modules/nginx/files/huboard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/puppet/local_modules/nginx/files/huboard.conf -------------------------------------------------------------------------------- /puppet/local_modules/nginx/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/puppet/local_modules/nginx/manifests/init.pp -------------------------------------------------------------------------------- /puppet/local_modules/ruby_install/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/puppet/local_modules/ruby_install/manifests/init.pp -------------------------------------------------------------------------------- /puppet/manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/puppet/manifests/base.pp -------------------------------------------------------------------------------- /script/cedar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/script/cedar.txt -------------------------------------------------------------------------------- /script/loadtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/script/loadtest.txt -------------------------------------------------------------------------------- /spec/lib/query_handler/query_handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/spec/lib/query_handler/query_handler_spec.rb -------------------------------------------------------------------------------- /spec/lib/webhooks/fixtures/stripe_sub_no_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/spec/lib/webhooks/fixtures/stripe_sub_no_user.json -------------------------------------------------------------------------------- /spec/lib/webhooks/stripe/stripe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/spec/lib/webhooks/stripe/stripe_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/api/health_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/controllers/api/health_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/login_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/controllers/login_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/lib/analytics/core_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/lib/analytics/core_test.rb -------------------------------------------------------------------------------- /test/lib/bridge/content_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/lib/bridge/content_test.rb -------------------------------------------------------------------------------- /test/lib/classy_assumptions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/lib/classy_assumptions_test.rb -------------------------------------------------------------------------------- /test/lib/core_extensions/string_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/lib/core_extensions/string_test.rb -------------------------------------------------------------------------------- /test/lib/faye_extensions/disconnect_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/lib/faye_extensions/disconnect_test.rb -------------------------------------------------------------------------------- /test/lib/job_resolver_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/lib/job_resolver_test.rb -------------------------------------------------------------------------------- /test/lib/uber_dictionary_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/lib/uber_dictionary_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/specs/lib/health_checking/doctor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/specs/lib/health_checking/doctor_test.rb -------------------------------------------------------------------------------- /test/specs/lib/health_checking/exams_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/specs/lib/health_checking/exams_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/.gitignore -------------------------------------------------------------------------------- /vendor/engines/saas/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/Gemfile -------------------------------------------------------------------------------- /vendor/engines/saas/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/Gemfile.lock -------------------------------------------------------------------------------- /vendor/engines/saas/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/engines/saas/README.rdoc: -------------------------------------------------------------------------------- 1 | = Saas 2 | 3 | This project rocks and uses MIT-LICENSE. -------------------------------------------------------------------------------- /vendor/engines/saas/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/Rakefile -------------------------------------------------------------------------------- /vendor/engines/saas/app/assets/images/saas/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/app/jobs/analytics/page_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/app/jobs/analytics/page_job.rb -------------------------------------------------------------------------------- /vendor/engines/saas/app/jobs/analytics_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/app/jobs/analytics_job.rb -------------------------------------------------------------------------------- /vendor/engines/saas/app/jobs/base_login_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/app/jobs/base_login_job.rb -------------------------------------------------------------------------------- /vendor/engines/saas/app/jobs/login_private_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/app/jobs/login_private_job.rb -------------------------------------------------------------------------------- /vendor/engines/saas/app/jobs/login_public_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/app/jobs/login_public_job.rb -------------------------------------------------------------------------------- /vendor/engines/saas/app/views/saas/profiles/user.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.(@data) 2 | -------------------------------------------------------------------------------- /vendor/engines/saas/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/bin/rails -------------------------------------------------------------------------------- /vendor/engines/saas/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/config/routes.rb -------------------------------------------------------------------------------- /vendor/engines/saas/lib/saas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/lib/saas.rb -------------------------------------------------------------------------------- /vendor/engines/saas/lib/saas/before_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/lib/saas/before_action.rb -------------------------------------------------------------------------------- /vendor/engines/saas/lib/saas/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/lib/saas/engine.rb -------------------------------------------------------------------------------- /vendor/engines/saas/lib/saas/version.rb: -------------------------------------------------------------------------------- 1 | module Saas 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /vendor/engines/saas/lib/tasks/saas_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/lib/tasks/saas_tasks.rake -------------------------------------------------------------------------------- /vendor/engines/saas/saas.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/saas.gemspec -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/README.rdoc -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/Rakefile -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/bin/bundle -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/bin/rails -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/bin/rake -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/bin/setup -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/config.ru -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/config/database.yml -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | 3 | mount Saas::Engine => "/saas" 4 | end 5 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/config/secrets.yml -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/public/404.html -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/public/422.html -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/dummy/public/500.html -------------------------------------------------------------------------------- /vendor/engines/saas/test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/engines/saas/test/saas_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/saas_test.rb -------------------------------------------------------------------------------- /vendor/engines/saas/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/engines/saas/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/gems/faye_extensions/faye_extensions.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/gems/faye_extensions/faye_extensions.gemspec -------------------------------------------------------------------------------- /vendor/gems/faye_extensions/lib/faye_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huboard/huboard-web/HEAD/vendor/gems/faye_extensions/lib/faye_extensions.rb -------------------------------------------------------------------------------- /vendor/gems/faye_extensions/lib/faye_extensions/version.rb: -------------------------------------------------------------------------------- 1 | module FayeExtensions 2 | VERSION = "0.0.1" 3 | end 4 | 5 | --------------------------------------------------------------------------------