forked from cfis/proj4rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proj4rb.gemspec
33 lines (29 loc) · 1.2 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 = '3.0.0'
spec.summary = 'Ruby bindings for the Proj.4 Carthographic Projection library'
spec.description = <<-EOF
Proj4rb is a ruby binding for the Proj.4 Carthographic Projection library, that supports conversions between a very large number of geographic coordinate systems and datumspec.
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.4.1'
spec.license = 'MIT'
spec.requirements << 'Proj (Proj4) 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