├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── carrierwave-vips.gemspec ├── lib ├── carrierwave-vips.rb └── carrierwave │ └── vips.rb └── spec ├── carrierwave └── vips_spec.rb ├── fixtures ├── bork.txt ├── landscape-with-orientation.jpg ├── landscape.jpg ├── portrait-with-orientation.jpg └── wonky-resize.jpg └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/README.md -------------------------------------------------------------------------------- /carrierwave-vips.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/carrierwave-vips.gemspec -------------------------------------------------------------------------------- /lib/carrierwave-vips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/lib/carrierwave-vips.rb -------------------------------------------------------------------------------- /lib/carrierwave/vips.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/lib/carrierwave/vips.rb -------------------------------------------------------------------------------- /spec/carrierwave/vips_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/spec/carrierwave/vips_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/bork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/spec/fixtures/bork.txt -------------------------------------------------------------------------------- /spec/fixtures/landscape-with-orientation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/spec/fixtures/landscape-with-orientation.jpg -------------------------------------------------------------------------------- /spec/fixtures/landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/spec/fixtures/landscape.jpg -------------------------------------------------------------------------------- /spec/fixtures/portrait-with-orientation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/spec/fixtures/portrait-with-orientation.jpg -------------------------------------------------------------------------------- /spec/fixtures/wonky-resize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/spec/fixtures/wonky-resize.jpg -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltiare/carrierwave-vips/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------