forked from nofxx/georuby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
georuby.gemspec
132 lines (127 loc) · 4.92 KB
/
georuby.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{georuby}
s.version = "1.9.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Guilhem Vellut", "Marcos Piccinini", "Marcus Mateus", "Doug Cole"]
s.date = %q{2011-03-05}
s.description = %q{GeoRuby provides geometric data types from the OGC 'Simple Features' specification.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
"History.txt",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/geo_ruby.rb",
"lib/geo_ruby/geojson.rb",
"lib/geo_ruby/georss.rb",
"lib/geo_ruby/gpx.rb",
"lib/geo_ruby/gpx4r/gpx.rb",
"lib/geo_ruby/shp.rb",
"lib/geo_ruby/shp4r/dbf.rb",
"lib/geo_ruby/shp4r/shp.rb",
"lib/geo_ruby/simple_features/envelope.rb",
"lib/geo_ruby/simple_features/ewkb_parser.rb",
"lib/geo_ruby/simple_features/ewkt_parser.rb",
"lib/geo_ruby/simple_features/geometry.rb",
"lib/geo_ruby/simple_features/geometry_collection.rb",
"lib/geo_ruby/simple_features/geometry_factory.rb",
"lib/geo_ruby/simple_features/helper.rb",
"lib/geo_ruby/simple_features/line_string.rb",
"lib/geo_ruby/simple_features/linear_ring.rb",
"lib/geo_ruby/simple_features/multi_line_string.rb",
"lib/geo_ruby/simple_features/multi_point.rb",
"lib/geo_ruby/simple_features/multi_polygon.rb",
"lib/geo_ruby/simple_features/point.rb",
"lib/geo_ruby/simple_features/polygon.rb",
"spec/data/geojson/feature_collection.json",
"spec/data/georss/atom.xml",
"spec/data/georss/w3c.xml",
"spec/data/gpx/fells_loop.gpx",
"spec/data/gpx/long.gpx",
"spec/data/gpx/long.kml",
"spec/data/gpx/long.nmea",
"spec/data/gpx/short.gpx",
"spec/data/gpx/short.kml",
"spec/data/gpx/tracktreks.gpx",
"spec/data/multipoint.dbf",
"spec/data/multipoint.shp",
"spec/data/multipoint.shx",
"spec/data/point.dbf",
"spec/data/point.shp",
"spec/data/point.shx",
"spec/data/polygon.dbf",
"spec/data/polygon.shp",
"spec/data/polygon.shx",
"spec/data/polyline.dbf",
"spec/data/polyline.shp",
"spec/data/polyline.shx",
"spec/geo_ruby/geojson_spec.rb",
"spec/geo_ruby/georss.rb",
"spec/geo_ruby/georss_spec.rb",
"spec/geo_ruby/gpx4r/gpx_spec.rb",
"spec/geo_ruby/shp4r/shp_spec.rb",
"spec/geo_ruby/simple_features/envelope_spec.rb",
"spec/geo_ruby/simple_features/ewkb_parser_spec.rb",
"spec/geo_ruby/simple_features/ewkt_parser_spec.rb",
"spec/geo_ruby/simple_features/geometry_collection_spec.rb",
"spec/geo_ruby/simple_features/geometry_factory_spec.rb",
"spec/geo_ruby/simple_features/geometry_spec.rb",
"spec/geo_ruby/simple_features/line_string_spec.rb",
"spec/geo_ruby/simple_features/linear_ring_spec.rb",
"spec/geo_ruby/simple_features/multi_line_string_spec.rb",
"spec/geo_ruby/simple_features/multi_point_spec.rb",
"spec/geo_ruby/simple_features/multi_polygon_spec.rb",
"spec/geo_ruby/simple_features/point_spec.rb",
"spec/geo_ruby/simple_features/polygon_spec.rb",
"spec/geo_ruby_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/nofxx/georuby}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.2}
s.summary = %q{Ruby data holder for OGC Simple Features}
s.test_files = [
"spec/geo_ruby/geojson_spec.rb",
"spec/geo_ruby/georss.rb",
"spec/geo_ruby/georss_spec.rb",
"spec/geo_ruby/gpx4r/gpx_spec.rb",
"spec/geo_ruby/shp4r/shp_spec.rb",
"spec/geo_ruby/simple_features/envelope_spec.rb",
"spec/geo_ruby/simple_features/ewkb_parser_spec.rb",
"spec/geo_ruby/simple_features/ewkt_parser_spec.rb",
"spec/geo_ruby/simple_features/geometry_collection_spec.rb",
"spec/geo_ruby/simple_features/geometry_factory_spec.rb",
"spec/geo_ruby/simple_features/geometry_spec.rb",
"spec/geo_ruby/simple_features/line_string_spec.rb",
"spec/geo_ruby/simple_features/linear_ring_spec.rb",
"spec/geo_ruby/simple_features/multi_line_string_spec.rb",
"spec/geo_ruby/simple_features/multi_point_spec.rb",
"spec/geo_ruby/simple_features/multi_polygon_spec.rb",
"spec/geo_ruby/simple_features/point_spec.rb",
"spec/geo_ruby/simple_features/polygon_spec.rb",
"spec/geo_ruby_spec.rb",
"spec/spec_helper.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 2.0.0"])
s.add_development_dependency(%q<dbf>, [">= 1.2.9"])
else
s.add_dependency(%q<rspec>, [">= 2.0.0"])
s.add_dependency(%q<dbf>, [">= 1.2.9"])
end
else
s.add_dependency(%q<rspec>, [">= 2.0.0"])
s.add_dependency(%q<dbf>, [">= 1.2.9"])
end
end