-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkmlbo.gemspec
30 lines (30 loc) · 939 Bytes
/
kmlbo.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
Gem::Specification.new do |s|
s.name = 'kmlbo'
s.version = '0.0.3'
s.date = '2012-11-13'
s.summary = "A library and utility for working with KML, Ruby and the Google Maps API."
s.description = "A Gem for converting kml path data to ruby arrays, and applying douglas peucker path simplification."
s.author = "Josh Cronemeyer"
s.email = 'joshuacronemeyer@gmail.com'
s.homepage = 'https://github.com/joshuacronemeyer/kmlbo'
s.required_ruby_version = ">= 1.9.3"
s.files = [
"Rakefile",
"README.md",
"bin/kmlbo",
"lib/kmlbo.rb",
"lib/kmlbo/kml.rb",
"lib/kmlbo/g_polyline.rb",
"lib/kmlbo/pointlist.rb",
"lib/kmlbo/output.kml.erb"
]
s.test_files = [
"test/data.rb",
"test/pointlist_test.rb",
"test/g_polyline_test.rb",
"test/sample.kml",
"test/test_helper.rb"
]
s.executables = ['kmlbo']
s.add_development_dependency('rake')
end