-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathproj4rb.gemspec
33 lines (29 loc) · 1.07 KB
/
proj4rb.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
Gem::Specification.new do |spec|
spec.name = 'proj4rb'
spec.version = '4.1.0'
spec.summary = 'Ruby bindings for the Proj coordinate transformation library'
spec.description = <<-EOF
Ruby bindings for the Proj coordinate transformation library
EOF
spec.platform = Gem::Platform::RUBY
spec.authors = ['Guilhem Vellut', 'Jochen Topf', 'Charlie Savage']
spec.homepage = 'https://github.com/cfis/proj4rb'
spec.required_ruby_version = '>= 2.7'
spec.license = 'MIT'
spec.requirements << 'Proj Library'
spec.require_path = 'lib'
spec.files = Dir['ChangeLog',
'Gemfile',
'MIT-LICENSE',
'proj4rb.gemspec',
'Rakefile',
'README.rdoc',
'lib/**/*.rb',
'test/*.rb']
spec.test_files = Dir["test/test_*.rb"]
spec.add_dependency "ffi"
spec.add_development_dependency('bundler')
spec.add_development_dependency('rake')
spec.add_development_dependency('minitest')
spec.add_development_dependency('yard')
end