dragonfly_libvips 2.4.0 → 2.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +3 -3
- data/lib/dragonfly_libvips.rb +1 -1
- data/lib/dragonfly_libvips/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46c101441cc8dcf749651080e1697e2a31eab69dde06a9aae0856bc37df6f0ba
|
4
|
+
data.tar.gz: 2ef729e0df1f12951dc09e5b492165593fd434fb79edce33a5f57bfae143c9c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f62cdad7d98c0c107acd337883a02356fea0579fb622ca3d4b8c4a98696d3fd2ba5ab83ffac20eaca9d6e44f55fba446bf21d2bba4d9d04f4e444cf9dc71c8ae
|
7
|
+
data.tar.gz: 2c40316d19404f9271c28d88982643c2f94fceffff7c51b4deca294c4194974d87778dfc1dd0a877906d01730d862a86e8f07fd6da409d0673d5908b2178b7b3
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
[![Build Status](https://travis-ci.org/tomasc/dragonfly_libvips.svg)](https://travis-ci.org/tomasc/dragonfly_libvips) [![Gem Version](https://badge.fury.io/rb/dragonfly_libvips.svg)](http://badge.fury.io/rb/dragonfly_libvips) [![Coverage Status](https://img.shields.io/coveralls/tomasc/dragonfly_libvips.svg)](https://coveralls.io/r/tomasc/dragonfly_libvips)
|
4
4
|
|
5
|
-
Dragonfly analysers and processors for [libvips](https://github.com/
|
5
|
+
Dragonfly analysers and processors for [libvips](https://github.com/libvips/libvips) image processing library
|
6
6
|
|
7
7
|
From the libvips README:
|
8
8
|
|
9
|
-
> libvips is a 2D image processing library. Compared to similar libraries, [libvips runs quickly and uses little memory](
|
9
|
+
> libvips is a 2D image processing library. Compared to similar libraries, [libvips runs quickly and uses little memory](https://github.com/libvips/libvips/wiki/Speed-and-memory-use). libvips is licensed under the LGPL 2.1+.
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
@@ -34,7 +34,7 @@ If you run into trouble installing `libvips` with Ruby introspection on Linux, f
|
|
34
34
|
|
35
35
|
## Dependencies
|
36
36
|
|
37
|
-
The [vips](http://www.vips.ecs.soton.ac.uk/index.php?title=Supported) library and its [dependencies](https://github.com/
|
37
|
+
The [vips](http://www.vips.ecs.soton.ac.uk/index.php?title=Supported) library and its [dependencies](https://github.com/libvips/libvips#dependencies).
|
38
38
|
|
39
39
|
## Usage
|
40
40
|
|
data/lib/dragonfly_libvips.rb
CHANGED
@@ -6,7 +6,7 @@ require 'vips'
|
|
6
6
|
|
7
7
|
module DragonflyLibvips
|
8
8
|
class UnsupportedFormat < RuntimeError; end
|
9
|
-
class
|
9
|
+
class UnsupportedOutputFormat < RuntimeError; end
|
10
10
|
|
11
11
|
CMYK_PROFILE_PATH = File.expand_path('../vendor/cmyk.icm', __dir__)
|
12
12
|
EPROFILE_PATH = File.expand_path('../vendor/sRGB_v4_ICC_preference.icc', __dir__)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dragonfly_libvips
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Celizna
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dragonfly
|