active_analysis 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/active_analysis/analyzer/audio_analyzer.rb +2 -0
- data/lib/active_analysis/analyzer/image_analyzer.rb +2 -0
- data/lib/active_analysis/analyzer/image_analyzer/image_magick.rb +2 -0
- data/lib/active_analysis/analyzer/image_analyzer/vips.rb +2 -0
- data/lib/active_analysis/analyzer/pdf_analyzer.rb +2 -0
- data/lib/active_analysis/analyzer/video_analyzer.rb +2 -0
- data/lib/active_analysis/gem_version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 682b39ef90eab2d2f825bb31f75b2345e32a4df0858d063f1f13314fd1aa25e6
|
|
4
|
+
data.tar.gz: c5cb58d2b1ac0304fc220953b4cf7250e4568642b1be30017bf56caf71b2fea1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0860684f890ee8b3c1818ef547126de464c1b3a2434e70850dbcd3d57fddb087c478412753936a58608700564197bdaff7ed0951fceba4b6a4bb6b2eb0ad0135'
|
|
7
|
+
data.tar.gz: f1eba05f7f54af13851000862d7c45d99e04a44ce511dfe2e815b2a1539df5f64a10df1d812a98fbbeb6f10c350dd3354f1c870c993e92754ed6326b415d6830
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require_relative "../image_analyzer"
|
|
4
|
+
|
|
3
5
|
module ActiveAnalysis
|
|
4
6
|
# This analyzer relies on the third-party {MiniMagick}[https://github.com/minimagick/minimagick] gem. MiniMagick requires
|
|
5
7
|
# the {ImageMagick}[http://www.imagemagick.org] system library.
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require_relative "../image_analyzer"
|
|
4
|
+
|
|
3
5
|
module ActiveAnalysis
|
|
4
6
|
# This analyzer relies on the third-party {ruby-vips}[https://github.com/libvips/ruby-vips] gem. Ruby-vips requires
|
|
5
7
|
# the {libvips}[https://libvips.github.io/libvips/] system library.
|