gitextract_viho8uov/ ├── .gitignore ├── .ruby-version ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── config.ru ├── lib/ │ ├── kobol/ │ │ ├── app.rb │ │ ├── helpers/ │ │ │ ├── authentication.rb │ │ │ ├── form_helpers.rb │ │ │ ├── pagination.rb │ │ │ └── requests.rb │ │ ├── presenters/ │ │ │ ├── issue.rb │ │ │ └── label.rb │ │ └── requests/ │ │ ├── base.rb │ │ ├── issues.rb │ │ └── labels.rb │ └── kobol.rb ├── public/ │ ├── ads.txt │ ├── css/ │ │ ├── github.css │ │ ├── style-small.css │ │ └── style.css │ └── js/ │ ├── analytics.js │ ├── application.js │ └── jquery.js ├── spec/ │ ├── acceptance/ │ │ └── issues_spec.rb │ ├── requests/ │ │ └── issues_spec.rb │ └── spec_helper.rb └── views/ ├── _issue.erb ├── _pagination.erb ├── _search.erb ├── issues.erb ├── label_guide.erb ├── layout.erb └── privacy_policy.erb