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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2264c818bb6bbdf31ecde9797cbeb77edf1f42b52d3b7f3f0178fbf47fec2ef8
4
- data.tar.gz: 8cf368194ab3226945d275fea222685b346c6c6821dddde0ad9ddcdea40ca445
3
+ metadata.gz: 682b39ef90eab2d2f825bb31f75b2345e32a4df0858d063f1f13314fd1aa25e6
4
+ data.tar.gz: c5cb58d2b1ac0304fc220953b4cf7250e4568642b1be30017bf56caf71b2fea1
5
5
  SHA512:
6
- metadata.gz: e9381a23b549ef234a7d4e13aa04460b99d6365b1f82f6cd3359d8d4b31e72d7be3664ee64536ff73429353c83122f5a0f113b64ebd104c530f1721cb1ed363e
7
- data.tar.gz: c9f3f4ce840c7b1cfae253459f09af28163672fff60c1d0643f45f256d3b08d4689752de359d47923e883c1e43abb9a6e33a91c8089ea27a26b7e95a72dc5710
6
+ metadata.gz: '0860684f890ee8b3c1818ef547126de464c1b3a2434e70850dbcd3d57fddb087c478412753936a58608700564197bdaff7ed0951fceba4b6a4bb6b2eb0ad0135'
7
+ data.tar.gz: f1eba05f7f54af13851000862d7c45d99e04a44ce511dfe2e815b2a1539df5f64a10df1d812a98fbbeb6f10c350dd3354f1c870c993e92754ed6326b415d6830
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative "../analyzer"
4
+
3
5
  module ActiveAnalysis
4
6
  # Extracts duration (seconds) and bit_rate (bits/s) from an audio blob.
5
7
  #
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative "../analyzer"
4
+
3
5
  module ActiveAnalysis
4
6
  # This is an abstract base class for image analyzers, which extract width and height from an image blob.
5
7
  #
@@ -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.
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative "../analyzer"
4
+
3
5
  module ActiveAnalysis
4
6
  # Extracts width, height in pixels and number of pages from a pdf blob.
5
7
  #
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative "../analyzer"
4
+
3
5
  module ActiveAnalysis
4
6
  # Extracts the following from a video blob:
5
7
  #
@@ -9,7 +9,7 @@ module ActiveAnalysis
9
9
  module VERSION
10
10
  MAJOR = 0
11
11
  MINOR = 1
12
- TINY = 2
12
+ TINY = 3
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_analysis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Breno Gazzola