├── .gitignore ├── .travis.yml ├── CHANGELOG ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── VERSION ├── lib ├── mini_gmagick.rb └── mini_magick.rb ├── mini_magick.gemspec └── test ├── command_builder_test.rb ├── files ├── actually_a_gif.jpg ├── animation.gif ├── composited.jpg ├── leaves (spaced).tiff ├── not_an_image.php ├── png.png ├── simple-minus.gif ├── simple.gif ├── trogdor.jpg └── trogdor_capitalized.JPG ├── image_test.rb ├── leaves (spaced).tiff ├── test_helper.rb └── trogdor_capitalized.JPG /.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | coverage 3 | *.lock 4 | .idea 5 | .yardoc 6 | .rvmrc 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.4 -------------------------------------------------------------------------------- /lib/mini_gmagick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/lib/mini_gmagick.rb -------------------------------------------------------------------------------- /lib/mini_magick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/lib/mini_magick.rb -------------------------------------------------------------------------------- /mini_magick.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/mini_magick.gemspec -------------------------------------------------------------------------------- /test/command_builder_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/command_builder_test.rb -------------------------------------------------------------------------------- /test/files/actually_a_gif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/actually_a_gif.jpg -------------------------------------------------------------------------------- /test/files/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/animation.gif -------------------------------------------------------------------------------- /test/files/composited.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/composited.jpg -------------------------------------------------------------------------------- /test/files/leaves (spaced).tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/leaves (spaced).tiff -------------------------------------------------------------------------------- /test/files/not_an_image.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/files/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/png.png -------------------------------------------------------------------------------- /test/files/simple-minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/simple-minus.gif -------------------------------------------------------------------------------- /test/files/simple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/simple.gif -------------------------------------------------------------------------------- /test/files/trogdor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/trogdor.jpg -------------------------------------------------------------------------------- /test/files/trogdor_capitalized.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/files/trogdor_capitalized.JPG -------------------------------------------------------------------------------- /test/image_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/image_test.rb -------------------------------------------------------------------------------- /test/leaves (spaced).tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/leaves (spaced).tiff -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/trogdor_capitalized.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probablycorey/mini_magick/HEAD/test/trogdor_capitalized.JPG --------------------------------------------------------------------------------