2013-06-15 12:07:59 +02:00
|
|
|
# coding: utf-8
|
|
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
require 'gpx/version'
|
|
|
|
|
2010-02-28 01:03:59 +01:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = 'gpx'
|
|
|
|
s.version = GPX::VERSION
|
2013-06-15 12:07:59 +02:00
|
|
|
s.authors = ["Guillaume Dott", "Doug Fales"]
|
|
|
|
s.email = ["guillaume+github@dott.fr", "doug.fales@gmail.com"]
|
2010-02-28 01:03:59 +01:00
|
|
|
s.summary = %q{A basic API for reading and writing GPX files.}
|
|
|
|
s.description = %q{A basic API for reading and writing GPX files.}
|
2013-06-15 12:07:59 +02:00
|
|
|
|
|
|
|
s.files = `git ls-files`.split($/)
|
|
|
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
|
|
s.require_paths = ["lib"]
|
2010-02-28 01:03:59 +01:00
|
|
|
s.has_rdoc = true
|
2013-06-15 12:07:59 +02:00
|
|
|
|
2010-02-28 01:03:59 +01:00
|
|
|
s.homepage = "http://dougfales.github.com/gpx/"
|
|
|
|
s.rubyforge_project = "gpx"
|
2013-06-15 12:07:59 +02:00
|
|
|
s.add_dependency 'hpricot'
|
2010-02-28 01:03:59 +01:00
|
|
|
end
|