file_data 5.2.0 → 5.2.1
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/file_data.gemspec +2 -2
- data/lib/file_data/version.rb +1 -1
- metadata +10 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e64cc9586ceb2888acbd6d116b9bd6743a7a87ecae1ab1769964197cc05db24
|
|
4
|
+
data.tar.gz: 9d9233bf23ac2c26e0e2be97fdaefd2a8fea714d556f18c391432c2c1250bb98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d33572cd54080777c4d213e803343b45b597f726dc1a69dcf1f1d9b9b6663d71eda36cf1b0d0efc0794dee50a1d4aaba717cb940a0eeb23806e011184c4ce4e4
|
|
7
|
+
data.tar.gz: d902291c944a3b04d7e73ac2cabd2b551850eee83019f72643d32874af3c2de9ec93cd52059fd050dac1e83f01f14d9264b4355ff7d1b042f9afac211adc5196
|
data/file_data.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Scott"]
|
|
10
10
|
spec.email = [""]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{
|
|
13
|
-
spec.description = %q{
|
|
12
|
+
spec.summary = %q{Provides apis for extracting common metadata out of files as well as low level apis for advanced metadata parsing. Currently exif (jpeg/jpg) is almost entirely supported and mpeg4 (mp4,m4v,moov...) has limited support}
|
|
13
|
+
spec.description = %q{For common metadata the FileInfo class provides methods names after the metadata items taking a filename. As an example, to get the origin date of a file you would call FileData::FileInfo.origin_date(filename). Advanced apis are provided via specific classes for each metadata type. For example, Exif for exif data and Mpeg4 for mpeg4 data. These can be used to improve the performance of gathering multiple metadata values from a file}
|
|
14
14
|
spec.homepage = ""
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
data/lib/file_data/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: file_data
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.2.
|
|
4
|
+
version: 5.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott
|
|
@@ -94,8 +94,12 @@ dependencies:
|
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0.6'
|
|
97
|
-
description:
|
|
98
|
-
|
|
97
|
+
description: For common metadata the FileInfo class provides methods names after the
|
|
98
|
+
metadata items taking a filename. As an example, to get the origin date of a file
|
|
99
|
+
you would call FileData::FileInfo.origin_date(filename). Advanced apis are provided
|
|
100
|
+
via specific classes for each metadata type. For example, Exif for exif data and
|
|
101
|
+
Mpeg4 for mpeg4 data. These can be used to improve the performance of gathering
|
|
102
|
+
multiple metadata values from a file
|
|
99
103
|
email:
|
|
100
104
|
- ''
|
|
101
105
|
executables: []
|
|
@@ -164,6 +168,7 @@ rubyforge_project:
|
|
|
164
168
|
rubygems_version: 2.7.6
|
|
165
169
|
signing_key:
|
|
166
170
|
specification_version: 4
|
|
167
|
-
summary:
|
|
168
|
-
for jpeg
|
|
171
|
+
summary: Provides apis for extracting common metadata out of files as well as low
|
|
172
|
+
level apis for advanced metadata parsing. Currently exif (jpeg/jpg) is almost entirely
|
|
173
|
+
supported and mpeg4 (mp4,m4v,moov...) has limited support
|
|
169
174
|
test_files: []
|