gpx_kml 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,138 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gpx_kml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Angelo Terzi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '12.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '12.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: nokogiri
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.12.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.12.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: factory_bot
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '6.2'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '6.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ description: This gem adds the capability to convert GPS Exchange Format (GPX) to
70
+ Keyhole Markup Language (KML) and viceversa
71
+ email:
72
+ - info@engim.eu
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".gitignore"
78
+ - ".idea/.gitignore"
79
+ - ".idea/dictionaries/angelo.xml"
80
+ - ".idea/gpx_kml.iml"
81
+ - ".idea/misc.xml"
82
+ - ".idea/modules.xml"
83
+ - ".idea/vcs.xml"
84
+ - ".rspec"
85
+ - ".travis.yml"
86
+ - CHANGELOG.md
87
+ - CODE_OF_CONDUCT.md
88
+ - Gemfile
89
+ - Gemfile.lock
90
+ - README.md
91
+ - Rakefile
92
+ - bin/console
93
+ - bin/setup
94
+ - gpx_kml.gemspec
95
+ - lib/converter.rb
96
+ - lib/gpx_kml.rb
97
+ - lib/gpx_kml/gpx.rb
98
+ - lib/gpx_kml/gpx/point.rb
99
+ - lib/gpx_kml/gpx/route.rb
100
+ - lib/gpx_kml/gpx/segment.rb
101
+ - lib/gpx_kml/gpx/track.rb
102
+ - lib/gpx_kml/kml.rb
103
+ - lib/gpx_kml/kml/point.rb
104
+ - lib/gpx_kml/kml/route.rb
105
+ - lib/gpx_kml/kml/track.rb
106
+ - lib/gpx_kml/templates/rte.gpx
107
+ - lib/gpx_kml/templates/template.gpx
108
+ - lib/gpx_kml/templates/template.kml
109
+ - lib/gpx_kml/templates/trk.gpx
110
+ - lib/gpx_kml/templates/wpt.gpx
111
+ - lib/gpx_kml/version.rb
112
+ homepage: https://www.github.com/engim-eu/
113
+ licenses: []
114
+ metadata:
115
+ allowed_push_host: https://rubygems.org
116
+ homepage_uri: https://www.github.com/engim-eu/
117
+ source_code_uri: https://www.github.com/engim-eu/gpx_kml
118
+ changelog_uri: https://www.github.com/engim-eu/gpx_kml/CHANGELOG.md
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: 2.5.0
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: '0'
133
+ requirements: []
134
+ rubygems_version: 3.1.4
135
+ signing_key:
136
+ specification_version: 4
137
+ summary: Gem to convert .gpx into .kml and back
138
+ test_files: []