-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- access to unknown IFD fields - support TIFF floats and doubles
- Loading branch information
Showing
2 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
spec = Gem::Specification.new do |s| | ||
s.name = 'exifr' | ||
s.version = '1.3.9' | ||
s.version = '1.3.10' | ||
s.author = "R.W. van 't Veer" | ||
s.email = '[email protected]' | ||
s.homepage = 'http://github.com/remvee/exifr/' | ||
|
@@ -11,7 +11,38 @@ spec = Gem::Specification.new do |s| | |
|
||
s.files = %w(Rakefile Gemfile bin/exifr) | ||
s.files += %w(lib/exifr.rb lib/exifr/jpeg.rb lib/exifr/tiff.rb) | ||
s.files += %w(tests/data/1x1.jpg tests/data/Canon_PowerShot_A85.exif tests/data/Casio-EX-S20.exif tests/data/FUJIFILM-FinePix_S3000.exif tests/data/Panasonic-DMC-LC33.exif tests/data/Trust-DC3500_MINI.exif tests/data/apple-aperture-1.5.exif tests/data/bad-shutter_speed_value.exif tests/data/canon-g3.exif tests/data/endless-loop.exif tests/data/exif.jpg tests/data/gopro_hd2.exif tests/data/gps-altitude.jpg tests/data/gps.exif tests/data/image.jpg tests/data/multiple-app1.jpg tests/data/negative-exposure-bias-value.exif tests/data/nikon_d1x.tif tests/data/out-of-range.exif tests/data/plain.tif tests/data/samsung-sc-02b.jpg tests/data/sony-a7ii.exif tests/data/user-comment.exif tests/data/weird_date.exif tests/jpeg_test.rb tests/test_helper.rb tests/tiff_test.rb) | ||
s.files += %w( | ||
tests/data/1x1.jpg | ||
tests/data/Canon_PowerShot_A85.exif | ||
tests/data/Casio-EX-S20.exif | ||
tests/data/FUJIFILM-FinePix_S3000.exif | ||
tests/data/Panasonic-DMC-LC33.exif | ||
tests/data/Trust-DC3500_MINI.exif | ||
tests/data/apple-aperture-1.5.exif | ||
tests/data/bad-shutter_speed_value.exif | ||
tests/data/bad_gps.exif | ||
tests/data/canon-g3.exif | ||
tests/data/endless-loop.exif | ||
tests/data/exif.jpg | ||
tests/data/gopro_hd2.exif | ||
tests/data/gps-altitude.jpg | ||
tests/data/gps.exif | ||
tests/data/image.jpg | ||
tests/data/ios-mspix-milliseconds.jpg | ||
tests/data/multiple-app1.jpg | ||
tests/data/negative-exposure-bias-value.exif | ||
tests/data/nikon_d1x.tif | ||
tests/data/out-of-range.exif | ||
tests/data/plain.tif | ||
tests/data/samsung-sc-02b.jpg | ||
tests/data/sony-a7ii.exif | ||
tests/data/truncated.exif | ||
tests/data/user-comment.exif | ||
tests/data/weird_date.exif | ||
tests/jpeg_test.rb | ||
tests/test_helper.rb | ||
tests/tiff_test.rb | ||
) | ||
|
||
s.executables = %w(exifr) | ||
|
||
|