2011-11-07 22:52:45 +01:00
|
|
|
require './lib/gpx/gpx' # load this just to get GPX::VERSION
|
2010-02-28 01:03:59 +01:00
|
|
|
require 'rake' # For FileList
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = 'gpx'
|
|
|
|
s.version = GPX::VERSION
|
|
|
|
s.summary = %q{A basic API for reading and writing GPX files.}
|
|
|
|
s.description = %q{A basic API for reading and writing GPX files.}
|
|
|
|
s.files = FileList[ "lib/**/*", "bin/*", "tests/**/*", "[A-Z]*", "Rakefile", "doc/**/*" ]
|
|
|
|
s.require_path = 'lib'
|
|
|
|
s.has_rdoc = true
|
|
|
|
s.author = "Doug Fales"
|
|
|
|
s.email = "doug.fales@gmail.com"
|
|
|
|
s.homepage = "http://dougfales.github.com/gpx/"
|
|
|
|
s.rubyforge_project = "gpx"
|
2011-11-07 22:56:18 +01:00
|
|
|
s.add_dependency('hpricot')
|
2010-02-28 01:03:59 +01:00
|
|
|
end
|