forked from remvee/exifr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exifr.gemspec
18 lines (15 loc) · 1.2 KB
/
exifr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
spec = Gem::Specification.new do |s|
s.name = 'exifr'
s.version = '1.1.3'
s.author = "R.W. van 't Veer"
s.email = '[email protected]'
s.homepage = 'http://github.com/remvee/exifr/'
s.summary = 'EXIF Reader is a module to read EXIF from JPEG images.'
s.files = %w(Rakefile 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/apple-aperture-1.5.exif tests/data/canon-g3.exif tests/data/Canon_PowerShot_A85.exif tests/data/Casio-EX-S20.exif tests/data/endless-loop.exif tests/data/exif.jpg tests/data/FUJIFILM-FinePix_S3000.exif 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/Panasonic-DMC-LC33.exif tests/data/plain.tif tests/data/Trust-DC3500_MINI.exif tests/data/user-comment.exif tests/data/weird_date.exif tests/data/bad-shutter_speed_value.exif tests/jpeg_test.rb tests/test_helper.rb tests/tiff_test.rb)
s.has_rdoc = true
s.rdoc_options = ['--title', 'EXIF Reader for Ruby API Documentation', '--main', 'README.rdoc']
s.extra_rdoc_files = %w(README.rdoc CHANGELOG)
s.executables = %w(exifr)
end