-
Notifications
You must be signed in to change notification settings - Fork 50
/
gpx.gemspec
27 lines (22 loc) · 942 Bytes
/
gpx.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gpx/version'
Gem::Specification.new do |s|
s.name = 'gpx'
s.version = GPX::VERSION
s.authors = ['Guillaume Dott', 'Doug Fales', 'Andrew Hao']
s.summary = 'A basic API for reading and writing GPX files.'
s.description = 'A basic API for reading and writing GPX files.'
s.required_ruby_version = '>= 2.7', '< 4'
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.homepage = 'http://www.github.com/dougfales/gpx'
s.add_dependency 'nokogiri', '~>1.7'
s.add_dependency 'rake'
s.add_development_dependency 'bundler'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rubocop'
end