file_data 5.2.0 → 5.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57a1747c7962bc51b2333ae0037e9736437190f0c98dce5d77810bc81df22152
4
- data.tar.gz: 88f5ddc362b309d14c3c5e8f3c463191dc448fb48901b9afae5b942bf5595745
3
+ metadata.gz: 5e64cc9586ceb2888acbd6d116b9bd6743a7a87ecae1ab1769964197cc05db24
4
+ data.tar.gz: 9d9233bf23ac2c26e0e2be97fdaefd2a8fea714d556f18c391432c2c1250bb98
5
5
  SHA512:
6
- metadata.gz: 89d98f94f872872ad3a59b84fdc42612d82db860ccac2769f8ebcce5b2b5715b44847dad125a3f6ca6a6811715866aebc2c0558550c4ff06f478119726937190
7
- data.tar.gz: 54d2e8defca7b5dd1447c7bb0de238d4a70f662a99afa9f9b9d8647b0c8152a73b58cb536e45064cc96091be571e3bcafa5910a88e9dd1b5baa800a114b679f6
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{Extracts file metadata information (currently only supports exif metadata for jpeg files)}
13
- spec.description = %q{Extracts file metadata information (currently only supports exif metadata for jpeg files)}
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
 
@@ -1,3 +1,3 @@
1
1
  module FileData
2
- VERSION = '5.2.0'.freeze
2
+ VERSION = '5.2.1'.freeze
3
3
  end
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.0
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: Extracts file metadata information (currently only supports exif metadata
98
- for jpeg files)
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: Extracts file metadata information (currently only supports exif metadata
168
- for jpeg files)
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: []