remvee / exifr

EXIF Reader

This URL has Read+Write access

exifr / exifr.gemspec
9e3f69a2 » remvee 2008-07-22 splice out gemspec and rena... 1 spec = Gem::Specification.new do |s|
2 s.name = 'exifr'
b54ec9d4 » remvee 2009-02-21 release 0.10.8 3 s.version = '0.10.8'
9e3f69a2 » remvee 2008-07-22 splice out gemspec and rena... 4 s.author = "R.W. van 't Veer"
5 s.email = 'remco@remvee.net'
d9c2d93d » remvee 2008-07-22 moved to github 6 s.homepage = 'http://github.com/remvee/exifr/'
9e3f69a2 » remvee 2008-07-22 splice out gemspec and rena... 7 s.summary = 'EXIF Reader is a module to read EXIF from JPEG images.'
8
d9c2d93d » remvee 2008-07-22 moved to github 9 s.files = %w(Rakefile bin/exifr)
10 s.files += %w(lib/exifr.rb lib/jpeg.rb lib/tiff.rb)
9f9d327c » remvee 2008-08-07 rename tests (missed some f... 11 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/nikon_d1x.tif tests/data/Panasonic-DMC-LC33.exif tests/data/plain.tif tests/data/Trust-DC3500_MINI.exif tests/data/weird_date.exif tests/test_helper.rb tests/jpeg_test.rb tests/tiff_test.rb)
d9c2d93d » remvee 2008-07-22 moved to github 12
9e3f69a2 » remvee 2008-07-22 splice out gemspec and rena... 13 s.has_rdoc = true
d9c2d93d » remvee 2008-07-22 moved to github 14 s.rdoc_options = ['--title', 'EXIF Reader for Ruby API Documentation', '--main', 'README.rdoc']
9e3f69a2 » remvee 2008-07-22 splice out gemspec and rena... 15 s.extra_rdoc_files = %w(README.rdoc CHANGELOG)
16
d9c2d93d » remvee 2008-07-22 moved to github 17 s.executables = %w(exifr)
9e3f69a2 » remvee 2008-07-22 splice out gemspec and rena... 18 end