-
Notifications
You must be signed in to change notification settings - Fork 65
/
exifr.gemspec
63 lines (59 loc) · 2.03 KB
/
exifr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
spec = Gem::Specification.new do |s|
s.name = 'exifr'
s.version = '1.4.0'
s.author = "R.W. van 't Veer"
s.email = '[email protected]'
s.homepage = 'http://github.com/remvee/exifr/'
s.summary = 'Read EXIF from JPEG and TIFF images'
s.description = 'EXIF Reader is a module to read EXIF from JPEG and TIFF images.'
s.licenses = ['MIT']
s.required_ruby_version = '>= 2.0'
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/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)
if s.respond_to?(:add_development_dependency)
s.add_development_dependency 'test-unit', '3.1.5'
s.add_development_dependency 'rake', '~> 12'
end
if s.respond_to?(:metadata)
s.metadata = {
'bug_tracker_uri' => 'https://github.com/remvee/exifr/issues',
'changelog_uri' => 'https://github.com/remvee/exifr/blob/master/CHANGELOG',
'documentation_uri' => 'https://remvee.github.io/exifr/api/',
'homepage_uri' => 'https://remvee.github.io/exifr/',
'source_code_uri' => 'https://github.com/remvee/exifr'
}
end
end