├── log └── .keep ├── app ├── mailers │ └── .keep ├── assets │ ├── images │ │ └── .keep │ ├── stylesheets │ │ ├── shared │ │ │ ├── clearfix.css.scss │ │ │ ├── form.css.scss │ │ │ └── gradient.css.scss │ │ ├── homepage.scss │ │ ├── application.css.scss │ │ ├── navbar.css.scss │ │ ├── teams.css.scss │ │ └── scaffolds.css.scss │ └── javascripts │ │ ├── application.js │ │ └── bookmarklet.js ├── models │ ├── concerns │ │ └── .keep │ ├── team_member.rb │ ├── repository_url_parser.rb │ ├── service.rb │ ├── issue_url_parser.rb │ ├── ship_list.rb │ ├── git_hub_url_parser.rb │ ├── issue_updater.rb │ ├── user.rb │ ├── team.rb │ ├── bucket.rb │ └── issue.rb ├── controllers │ ├── concerns │ │ └── .keep │ ├── user_controller.rb │ ├── ship_lists_controller.rb │ ├── audit_entries_controller.rb │ ├── sessions_controller.rb │ ├── import_controller.rb │ ├── radars_controller.rb │ ├── teams_controller.rb │ ├── buckets_controller.rb │ ├── application_controller.rb │ └── services_controller.rb ├── views │ ├── teams │ │ ├── _team_preview.html.erb │ │ └── index.html.erb │ ├── audit_entries │ │ ├── _archive_issues.html.erb │ │ ├── _create_bucket.html.erb │ │ ├── _remove_issue.html.erb │ │ ├── _rename_bucket.html.erb │ │ ├── _move_bucket.html.erb │ │ ├── _import_issue.html.erb │ │ ├── _remove_bucket.html.erb │ │ ├── index.html.erb │ │ └── _prioritize_issue.html.erb │ ├── buckets │ │ ├── new.html.erb │ │ ├── edit.html.erb │ │ ├── _navbar.html.erb │ │ ├── _bucket.html.erb │ │ ├── _form.html.erb │ │ ├── index.html.erb │ │ └── _issue.html.erb │ ├── shared │ │ ├── _scripts.html.erb │ │ └── _head.html.erb │ ├── ship_lists │ │ ├── show.html.erb │ │ └── index.html.erb │ ├── layouts │ │ ├── _messages.html.erb │ │ └── application.html.erb │ ├── radars │ │ └── show.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── prioritized_issues │ │ └── new.html.erb │ └── import │ │ └── index.html.erb ├── services │ └── application_service.rb └── helpers │ └── application_helper.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── public ├── favicon.ico ├── robots.txt ├── 500.html ├── 422.html └── 404.html ├── test ├── helpers │ └── .keep ├── mailers │ └── .keep ├── controllers │ └── .keep ├── fixtures │ ├── buckets.yml │ ├── prioritized_issues.yml │ ├── users.yml │ ├── issues.yml │ └── vcr_cassettes │ │ └── test__from_issue_does_not_update_issue_when_github_returns_304_not_modified.yml ├── models │ ├── issue_test.rb │ ├── issue_updater_test.rb │ ├── bucket_test.rb │ ├── repository_url_parser_test.rb │ ├── issue_url_parser_test.rb │ ├── prioritized_issue_test.rb │ └── audit_entry_test.rb ├── services │ └── application_service_test.rb └── test_helper.rb ├── .ruby-version ├── vendor └── assets │ ├── javascripts │ └── .keep │ ├── stylesheets │ └── .keep │ ├── bower.json │ └── bower_components │ └── octicons │ ├── svg │ ├── dash.svg │ ├── playback-play.svg │ ├── primitive-square.svg │ ├── triangle-down.svg │ ├── zap.svg │ ├── arrow-down.svg │ ├── arrow-left.svg │ ├── arrow-up.svg │ ├── triangle-up.svg │ ├── arrow-right.svg │ ├── arrow-small-up.svg │ ├── color-mode.svg │ ├── triangle-left.svg │ ├── arrow-small-down.svg │ ├── arrow-small-left.svg │ ├── arrow-small-right.svg │ ├── check.svg │ ├── playback-pause.svg │ ├── plus.svg │ ├── chevron-down.svg │ ├── chevron-left.svg │ ├── chevron-right.svg │ ├── chevron-up.svg │ ├── jump-up.svg │ ├── move-up.svg │ ├── triangle-right.svg │ ├── jump-down.svg │ ├── jump-left.svg │ ├── jump-right.svg │ ├── move-down.svg │ ├── playback-rewind.svg │ ├── move-left.svg │ ├── mail-reply.svg │ ├── move-right.svg │ ├── playback-fast-forward.svg │ ├── three-bars.svg │ ├── inbox.svg │ ├── x.svg │ ├── code.svg │ ├── milestone.svg │ ├── pencil.svg │ ├── ruby.svg │ ├── sign-out.svg │ ├── versions.svg │ ├── link-external.svg │ ├── mute.svg │ ├── primitive-dot.svg │ ├── star.svg │ ├── comment.svg │ ├── home.svg │ ├── quote.svg │ ├── alignment-unalign.svg │ ├── file-symlink-file.svg │ ├── gist.svg │ ├── pulse.svg │ ├── stop.svg │ ├── alignment-align.svg │ ├── file-code.svg │ ├── file-text.svg │ ├── graph.svg │ ├── list-unordered.svg │ ├── alignment-aligned-to.svg │ ├── mail.svg │ ├── mirror.svg │ ├── sign-in.svg │ ├── diff.svg │ ├── file-directory.svg │ ├── location.svg │ ├── ellipsis.svg │ ├── gist-secret.svg │ ├── settings.svg │ ├── terminal.svg │ ├── heart.svg │ ├── unfold.svg │ ├── browser.svg │ ├── fold.svg │ ├── diff-removed.svg │ ├── horizontal-rule.svg │ ├── screen-full.svg │ ├── screen-normal.svg │ ├── file-binary.svg │ ├── device-desktop.svg │ ├── diff-ignored.svg │ ├── lock.svg │ ├── diff-renamed.svg │ ├── list-ordered.svg │ ├── podium.svg │ ├── comment-discussion.svg │ ├── file-media.svg │ ├── diff-added.svg │ ├── file-symlink-directory.svg │ ├── split.svg │ ├── file-zip.svg │ ├── briefcase.svg │ ├── clock.svg │ ├── repo-push.svg │ ├── issue-opened.svg │ ├── repo.svg │ ├── diff-modified.svg │ ├── git-commit.svg │ ├── tag.svg │ ├── alert.svg │ ├── mail-read.svg │ ├── rss.svg │ ├── flame.svg │ ├── markdown.svg │ ├── credit-card.svg │ ├── question.svg │ ├── repo-pull.svg │ ├── search.svg │ ├── bookmark.svg │ ├── file-submodule.svg │ ├── key.svg │ ├── device-mobile.svg │ ├── circle-slash.svg │ ├── mortar-board.svg │ ├── package.svg │ ├── beer.svg │ ├── eye.svg │ ├── keyboard.svg │ ├── history.svg │ ├── issue-closed.svg │ ├── no-newline.svg │ ├── repo-force-push.svg │ ├── microscope.svg │ ├── link.svg │ ├── steps.svg │ ├── repo-forked.svg │ ├── info.svg │ ├── calendar.svg │ ├── person.svg │ ├── clippy.svg │ ├── jersey.svg │ ├── sync.svg │ ├── issue-reopened.svg │ ├── repo-clone.svg │ ├── pin.svg │ ├── hubot.svg │ ├── law.svg │ ├── trashcan.svg │ ├── checklist.svg │ ├── light-bulb.svg │ ├── book.svg │ ├── gear.svg │ ├── server.svg │ ├── squirrel.svg │ ├── rocket.svg │ ├── git-compare.svg │ ├── unmute.svg │ ├── broadcast.svg │ ├── git-branch.svg │ ├── tools.svg │ ├── database.svg │ ├── git-pull-request.svg │ ├── megaphone.svg │ ├── file-pdf.svg │ ├── git-merge.svg │ ├── paintcan.svg │ ├── device-camera.svg │ ├── circuit-board.svg │ ├── cloud-download.svg │ ├── cloud-upload.svg │ ├── mark-github.svg │ ├── gift.svg │ ├── hourglass.svg │ ├── octoface.svg │ ├── mention.svg │ ├── device-camera-video.svg │ ├── telescope.svg │ ├── dashboard.svg │ ├── organization.svg │ ├── plug.svg │ ├── bug.svg │ ├── radio-tower.svg │ └── globe.svg │ ├── octicons │ ├── octicons.eot │ ├── octicons.ttf │ ├── octicons.woff │ └── octicons-local.ttf │ ├── .gitignore │ ├── LICENSE.txt │ ├── bower.json │ └── .bower.json ├── config ├── initializers │ ├── octokit.rb │ ├── cookies_serializer.rb │ ├── session_store.rb │ ├── omniauth.rb │ ├── mime_types.rb │ ├── pusher.rb │ ├── filter_parameter_logging.rb │ ├── backtrace_silencers.rb │ ├── wrap_parameters.rb │ └── inflections.rb ├── environment.rb ├── boot.rb ├── locales │ ├── en.bootstrap.yml │ └── en.yml ├── unicorn.rb ├── secrets.yml ├── application.rb ├── routes.rb └── environments │ ├── development.rb │ └── test.rb ├── Procfile ├── extensions ├── chrome.zip └── chrome │ ├── icon48.png │ ├── icon128.png │ ├── background.js │ ├── manifest.json │ └── bookmarklet.js ├── bin ├── bundle ├── rake ├── rails └── spring ├── config.ru ├── db ├── migrate │ ├── 20140608224139_add_labels_to_issues.rb │ ├── 20140608175825_add_assigee_to_issues.rb │ ├── 20140609022534_add_synced_at_to_issues.rb │ ├── 20140614210138_remove_synced_at_from_issues.rb │ ├── 20160127054900_add_pull_request_to_issue.rb │ ├── 20140609223855_add_archived_at_to_prioritized_issue.rb │ ├── 20140608063204_add_team_id_to_users_and_buckets.rb │ ├── 20140606063200_create_users.rb │ ├── 20140606063633_create_services.rb │ ├── 20140607075001_create_buckets.rb │ ├── 20140608195129_rename_fields.rb │ ├── 20140607173338_create_prioritized_issues.rb │ ├── 20140606051823_create_issues.rb │ ├── 20140614190256_add_indexes.rb │ └── 20140805221233_create_audit_entries.rb └── seeds.rb ├── Rakefile ├── .gitignore ├── CONTRIBUTING.md ├── Gemfile └── LICENSE /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.0 2 | -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/initializers/octokit.rb: -------------------------------------------------------------------------------- 1 | Octokit.auto_paginate = true 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb 2 | -------------------------------------------------------------------------------- /extensions/chrome.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonmagic/i-got-issues/HEAD/extensions/chrome.zip -------------------------------------------------------------------------------- /extensions/chrome/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonmagic/i-got-issues/HEAD/extensions/chrome/icon48.png -------------------------------------------------------------------------------- /extensions/chrome/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonmagic/i-got-issues/HEAD/extensions/chrome/icon128.png -------------------------------------------------------------------------------- /app/views/teams/_team_preview.html.erb: -------------------------------------------------------------------------------- 1 | <%= team.name %> 2 |
3 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /app/models/team_member.rb: -------------------------------------------------------------------------------- 1 | class TeamMember 2 | def initialize(params) 3 | @login = params[:login] 4 | end 5 | 6 | attr_reader :login 7 | end 8 | -------------------------------------------------------------------------------- /vendor/assets/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "i-got-issues", 3 | "dependencies": { 4 | "octicons": "git@github.com:github/octicons.git" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /app/views/audit_entries/_archive_issues.html.erb: -------------------------------------------------------------------------------- 1 | <%= entry.user_login %> archived closed issues for <%= entry.team_name %> 2 | -------------------------------------------------------------------------------- /app/views/audit_entries/_create_bucket.html.erb: -------------------------------------------------------------------------------- 1 | <%= entry.user_login %> created the <%= entry.target_bucket_name %> bucket 2 | -------------------------------------------------------------------------------- /app/assets/stylesheets/shared/clearfix.css.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix { 2 | &:after { 3 | content: ""; 4 | display: table; 5 | clear: both; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/models/repository_url_parser.rb: -------------------------------------------------------------------------------- 1 | class RepositoryUrlParser < GitHubUrlParser 2 | def url_pattern 3 | /https?\:\/\/github\.(?:com|dev)\/(.+)\/(.+)/ 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | Rails.application.config.action_dispatch.cookies_serializer = :json -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/dash.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require ::File.expand_path('../config/environment', __FILE__) 4 | run Rails.application 5 | -------------------------------------------------------------------------------- /db/migrate/20140608224139_add_labels_to_issues.rb: -------------------------------------------------------------------------------- 1 | class AddLabelsToIssues < ActiveRecord::Migration 2 | def change 3 | add_column :issues, :labels, :binary 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonmagic/i-got-issues/HEAD/vendor/assets/bower_components/octicons/octicons/octicons.eot -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonmagic/i-got-issues/HEAD/vendor/assets/bower_components/octicons/octicons/octicons.ttf -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonmagic/i-got-issues/HEAD/vendor/assets/bower_components/octicons/octicons/octicons.woff -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | Rails.application.config.session_store :cookie_store, key: '_issues_session' 4 | -------------------------------------------------------------------------------- /db/migrate/20140608175825_add_assigee_to_issues.rb: -------------------------------------------------------------------------------- 1 | class AddAssigeeToIssues < ActiveRecord::Migration 2 | def change 3 | add_column :issues, :assignee, :string 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/playback-play.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require File.expand_path("../application", __FILE__) 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- 1 | Rails.application.config.middleware.use OmniAuth::Builder do 2 | provider :github, ENV["GITHUB_KEY"], ENV["GITHUB_SECRET"], :scope => "user,repo" 3 | end 4 | -------------------------------------------------------------------------------- /db/migrate/20140609022534_add_synced_at_to_issues.rb: -------------------------------------------------------------------------------- 1 | class AddSyncedAtToIssues < ActiveRecord::Migration 2 | def change 3 | add_column :issues, :synced_at, :datetime 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonmagic/i-got-issues/HEAD/vendor/assets/bower_components/octicons/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/primitive-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /db/migrate/20140614210138_remove_synced_at_from_issues.rb: -------------------------------------------------------------------------------- 1 | class RemoveSyncedAtFromIssues < ActiveRecord::Migration 2 | def change 3 | remove_column :issues, :synced_at 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/triangle-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/zap.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | # Set up gems listed in the Gemfile. 2 | ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__) 3 | 4 | require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"]) 5 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle 2 | /.rbenv-version 3 | /node_modules 4 | /bin 5 | /build 6 | /tmp 7 | /font 8 | /support/font-builder/support 9 | /site/_site/ 10 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/triangle-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /app/views/audit_entries/_remove_issue.html.erb: -------------------------------------------------------------------------------- 1 | <%= entry.user_login %> removed <%= link_to entry.issue_title, github_issue_url(entry.issue) %> from <%= entry.team_name %> 2 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | begin 3 | load File.expand_path("../spring", __FILE__) 4 | rescue LoadError 5 | end 6 | require_relative '../config/boot' 7 | require 'rake' 8 | Rake.application.run 9 | -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-small-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/color-mode.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/triangle-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /app/views/audit_entries/_rename_bucket.html.erb: -------------------------------------------------------------------------------- 1 | <%= entry.user_login %> renamed the bucket <%= entry.source_bucket_name %> to <%= entry.target_bucket_name %> 2 | -------------------------------------------------------------------------------- /config/initializers/pusher.rb: -------------------------------------------------------------------------------- 1 | # config/initializers/pusher.rb 2 | 3 | if ENV["PUSHER_URL"].present? 4 | require 'pusher' 5 | 6 | Pusher.url = ENV["PUSHER_URL"] 7 | Pusher.logger = Rails.logger 8 | end 9 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-small-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-small-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/arrow-small-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/check.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/playback-pause.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /app/views/audit_entries/_move_bucket.html.erb: -------------------------------------------------------------------------------- 1 | <%= entry.user_login %> moved bucket <%= entry.source_bucket_name %> to the #<%= entry.bucket_end_position %> column 2 | -------------------------------------------------------------------------------- /db/migrate/20160127054900_add_pull_request_to_issue.rb: -------------------------------------------------------------------------------- 1 | class AddPullRequestToIssue < ActiveRecord::Migration 2 | def change 3 | add_column :issues, :pull_request, :boolean, :default => false 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/chevron-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/jump-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/move-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/triangle-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/jump-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/jump-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/jump-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/move-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/octicons/svg/playback-rewind.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /app/views/audit_entries/_import_issue.html.erb: -------------------------------------------------------------------------------- 1 | <%= entry.user_login %> imported <%= link_to entry.issue_title, github_issue_url(entry.issue) %> into bucket <%= entry.target_bucket_name %> 2 | -------------------------------------------------------------------------------- /app/views/buckets/new.html.erb: -------------------------------------------------------------------------------- 1 | <% content_for :header_nav do %> 2 | <%= render "navbar" %> 3 | <% end %> 4 | 5 |#### Ship List for <%= @ship_list %>
7 |
8 | <% @ship_list.issues.each do |issue| %>* ([<%= github_issue_nwo_id(issue) %>](<%= github_issue_url(issue) %>)) <%= issue.title %>
<% end %>
9 |
##### Did:
7 | <% @did.each do |issue| %> 8 | - [x] [<%= github_issue_nwo_id(issue) %>](<%= github_issue_url(issue) %>): <%= issue.title %>##### Doing:
12 | <% @doing.each do |issue| %> 13 | - [ ] [<%= github_issue_nwo_id(issue) %>](<%= github_issue_url(issue) %>): <%= issue.title %>While viewing your teams buckets click Archive closed issues to rollup closed issues into a Ship List.
14 | <% end %> 15 |Teams, Buckets, and Issues
13 |Please authenticate with GitHub to continue using the Issues application.
15 | <%= t('auth.github_html') %> 16 |If you are the application owner check the logs for more information.
64 |Maybe you tried to change something you didn't have access to.
63 |If you are the application owner check the logs for more information.
65 |You may have mistyped the address or the page may have moved.
63 |If you are the application owner check the logs for more information.
65 |