file_data 5.2.1 → 5.2.2
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 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d73402a71c317075e56d3981ef719c260be5d25621c7ac324e3a8b750b893cc2
|
|
4
|
+
data.tar.gz: ab51b606a12d5dab13f50d4e1bb20832b875449afeed97f9325b35b6ea7301d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca4bc7ffdd13f3238603fc1e528171ceaa869dac4faff388ab68fe648569017485a04ae857c00899db778dc93c73120dfc82a187dc4d0c59686e4559ea9400ec
|
|
7
|
+
data.tar.gz: 0615ddff328e04beea677f7ce19f972f2e8c969ef3c3064ac8f9ac350f03c7a0a2db5108bb45131f90874ff33183161b363af59973c7c1fc6298020562487507
|
data/file_data.gemspec
CHANGED
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = [""]
|
|
11
11
|
|
|
12
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
|
-
spec.homepage = ""
|
|
13
|
+
spec.description = %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. 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
|
+
spec.homepage = "https://github.com/ScottHaney/file_data"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott
|
|
@@ -94,12 +94,14 @@ dependencies:
|
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0.6'
|
|
97
|
-
description:
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
description: Provides apis for extracting common metadata out of files as well as
|
|
98
|
+
low level apis for advanced metadata parsing. Currently exif (jpeg/jpg) is almost
|
|
99
|
+
entirely supported and mpeg4 (mp4,m4v,moov...) has limited support. For common metadata
|
|
100
|
+
the FileInfo class provides methods names after the metadata items taking a filename.
|
|
101
|
+
As an example, to get the origin date of a file you would call FileData::FileInfo.origin_date(filename).
|
|
102
|
+
Advanced apis are provided via specific classes for each metadata type. For example,
|
|
103
|
+
Exif for exif data and Mpeg4 for mpeg4 data. These can be used to improve the performance
|
|
104
|
+
of gathering multiple metadata values from a file
|
|
103
105
|
email:
|
|
104
106
|
- ''
|
|
105
107
|
executables: []
|
|
@@ -144,7 +146,7 @@ files:
|
|
|
144
146
|
- lib/file_data/helpers/sized_field.rb
|
|
145
147
|
- lib/file_data/helpers/stream_view.rb
|
|
146
148
|
- lib/file_data/version.rb
|
|
147
|
-
homepage:
|
|
149
|
+
homepage: https://github.com/ScottHaney/file_data
|
|
148
150
|
licenses:
|
|
149
151
|
- MIT
|
|
150
152
|
metadata:
|