gitextract_4787py6e/ ├── .gitignore ├── .rspec ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── Guardfile ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── attache.gemspec ├── config/ │ ├── puma.rb │ └── vhost.example.yml ├── config.ru ├── docker/ │ ├── Dockerfile │ └── bundler_geminstaller_install_with_timeout.rb ├── exe/ │ └── attache ├── lib/ │ ├── attache/ │ │ ├── backup.rb │ │ ├── base.rb │ │ ├── delete.rb │ │ ├── download.rb │ │ ├── file_response_body.rb │ │ ├── job.rb │ │ ├── resize_job.rb │ │ ├── tasks.rb │ │ ├── tus/ │ │ │ └── upload.rb │ │ ├── tus.rb │ │ ├── upload.rb │ │ ├── upload_url.rb │ │ ├── version.rb │ │ └── vhost.rb │ └── attache.rb ├── public/ │ ├── index.html │ └── vendor/ │ └── roboto/ │ └── Apache License.txt └── spec/ ├── fixtures/ │ └── sample.txt ├── lib/ │ └── attache/ │ ├── backup_spec.rb │ ├── delete_spec.rb │ ├── download_spec.rb │ ├── resize_job_spec.rb │ ├── tus/ │ │ └── upload_spec.rb │ ├── tus_spec.rb │ ├── upload_spec.rb │ ├── upload_url_spec.rb │ └── vhost_spec.rb └── spec_helper.rb