├── .gem_release.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── rspec-jruby.yml │ ├── rspec.yml │ └── rubocop.yml ├── .gitignore ├── .mdlrc ├── .rspec ├── .rubocop-md.yml ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── RELEASING.md ├── Rakefile ├── assets ├── logo-dark.svg └── logo-light.svg ├── config └── routes.rb ├── gemfiles ├── jruby.gemfile ├── rails6.gemfile ├── rails7.gemfile ├── rails8.gemfile ├── railsmaster.gemfile └── rubocop.gemfile ├── imgproxy-rails.gemspec ├── lib ├── imgproxy-rails.rb └── imgproxy-rails │ ├── engine.rb │ ├── helpers.rb │ ├── transformer.rb │ └── version.rb └── spec ├── avatar.mp4 ├── avatar.pdf ├── avatar.png ├── internal ├── config │ ├── database.yml │ ├── routes.rb │ └── storage.yml └── db │ └── schema.rb ├── internal_spec.rb ├── lib └── imgproxy-rails │ └── transformer_spec.rb ├── rails_helper.rb └── spec_helper.rb /.gem_release.yml: -------------------------------------------------------------------------------- 1 | bump: 2 | file: lib/imgproxy-rails/version.rb 3 | skip_ci: true 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/rspec-jruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.github/workflows/rspec-jruby.yml -------------------------------------------------------------------------------- /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.github/workflows/rubocop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.mdlrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop-md.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.rubocop-md.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/assets/logo-dark.svg -------------------------------------------------------------------------------- /assets/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/assets/logo-light.svg -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/config/routes.rb -------------------------------------------------------------------------------- /gemfiles/jruby.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/gemfiles/jruby.gemfile -------------------------------------------------------------------------------- /gemfiles/rails6.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/gemfiles/rails6.gemfile -------------------------------------------------------------------------------- /gemfiles/rails7.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/gemfiles/rails7.gemfile -------------------------------------------------------------------------------- /gemfiles/rails8.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/gemfiles/rails8.gemfile -------------------------------------------------------------------------------- /gemfiles/railsmaster.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/gemfiles/railsmaster.gemfile -------------------------------------------------------------------------------- /gemfiles/rubocop.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/gemfiles/rubocop.gemfile -------------------------------------------------------------------------------- /imgproxy-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/imgproxy-rails.gemspec -------------------------------------------------------------------------------- /lib/imgproxy-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/lib/imgproxy-rails.rb -------------------------------------------------------------------------------- /lib/imgproxy-rails/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/lib/imgproxy-rails/engine.rb -------------------------------------------------------------------------------- /lib/imgproxy-rails/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/lib/imgproxy-rails/helpers.rb -------------------------------------------------------------------------------- /lib/imgproxy-rails/transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/lib/imgproxy-rails/transformer.rb -------------------------------------------------------------------------------- /lib/imgproxy-rails/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ImgproxyRails 4 | VERSION = "0.3.0" 5 | end 6 | -------------------------------------------------------------------------------- /spec/avatar.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/avatar.mp4 -------------------------------------------------------------------------------- /spec/avatar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/avatar.pdf -------------------------------------------------------------------------------- /spec/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/avatar.png -------------------------------------------------------------------------------- /spec/internal/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/internal/config/database.yml -------------------------------------------------------------------------------- /spec/internal/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/internal/config/routes.rb -------------------------------------------------------------------------------- /spec/internal/config/storage.yml: -------------------------------------------------------------------------------- 1 | test: 2 | service: Disk 3 | root: /tmp 4 | -------------------------------------------------------------------------------- /spec/internal/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/internal/db/schema.rb -------------------------------------------------------------------------------- /spec/internal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/internal_spec.rb -------------------------------------------------------------------------------- /spec/lib/imgproxy-rails/transformer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/lib/imgproxy-rails/transformer_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgproxy/imgproxy-rails/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------