-
Notifications
You must be signed in to change notification settings - Fork 4
/
quad_sphere.gemspec
30 lines (29 loc) · 1.14 KB
/
quad_sphere.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
# -*- coding: utf-8; mode: ruby -*-
Gem::Specification.new do |s|
s.name = 'quad_sphere'
s.version = '1.0.0'
s.date = '2013-02-04'
s.summary = 'Quadrilateralised spherical cube projection'
s.description = <<END
An implementation of the quadrilateralised spherical cube, an
approximately equal-area projection of the sphere onto the faces of a
cube. It is useful for storing data collected on a spherical surface,
and for general mapmaking.
END
s.homepage = 'https://github.com/crinc/QuadSphere'
s.author = 'Cesar Rincon'
s.email = '[email protected]'
s.files = [ 'README.md',
'COPYING',
'quad_sphere.gemspec',
'examples/binning.rb',
'examples/distort_closure.rb',
'examples/gl1.rb',
'examples/gl2.rb',
'examples/grid.rb',
'lib/quad_sphere.rb',
'lib/quad_sphere/tangential.rb',
'lib/quad_sphere/csc.rb',
'lib/quad_sphere/version.rb' ]
s.test_files = [ 'test/test_quad_sphere.rb' ]
end