-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathexif.gemspec
20 lines (18 loc) · 837 Bytes
/
exif.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
require File.expand_path('../lib/exif/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = 'exif'
spec.version = Exif::VERSION
spec.authors = 'Jian Weihang'
spec.email = '[email protected]'
spec.summary = 'Ruby EXIF reader written in C extension.'
spec.description = 'Ruby EXIF reader written in C extension.'
spec.homepage = 'https://github.com/tonytonyjan/exif'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb', 'ext/**/*.{h,c}']
spec.extensions = ['ext/exif/extconf.rb']
spec.add_development_dependency 'rake', '>= 0.8.1'
spec.add_development_dependency 'rake-compiler', '~> 1.0.4'
spec.add_development_dependency 'minitest', '~> 5.11.3'
spec.metadata['msys2_mingw_dependencies'] = 'libexif'
end