gb-station-data 6.0.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7fecf6a269066c27473f26f03475c7362e84c57cad709e76a94baed5f35be5cb
4
+ data.tar.gz: dd6436383753c10ae36edf9d46bcb6a3e656e56ff0d068e37af1b783f12b9a47
5
+ SHA512:
6
+ metadata.gz: 6eec33ca6c616b693b5a30b3a948abddc1b6bd941f7e0a000608c69828f1e3d63f77bbcfc0d07ae61cb78c8f8cf26ce1321fd666cb8f66a8d478160135b03e0e
7
+ data.tar.gz: 63363bba616d0840b5475453d18acf5f4003dca40823158af3870fa9c6b19bad2d176e88a6f22e9724bd62ba9b4d36d572278a8073e9655c1c09855477ea6be4
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GbStationData
4
+ VERSION = "6.0.0"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module GbStationData
4
+ DATA_PATH = File.expand_path("./data", __dir__)
5
+
6
+ STATIONS = JSON.parse(File.read("#{DATA_PATH}/stations.json")).freeze
7
+ LINES = JSON.parse(File.read("#{DATA_PATH}/lines.json")).freeze
8
+ TOCS = JSON.parse(File.read("#{DATA_PATH}/tocs.json")).freeze
9
+ end
metadata ADDED
@@ -0,0 +1,39 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gb-station-data
3
+ version: !ruby/object:Gem::Version
4
+ version: 6.0.0
5
+ platform: ruby
6
+ authors:
7
+ - TangledWires Ltd
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ email: support@tangledwires.co.uk
13
+ executables: []
14
+ extensions: []
15
+ extra_rdoc_files: []
16
+ files:
17
+ - lib/gb-station-data.rb
18
+ - lib/gb-station-data/version.rb
19
+ licenses:
20
+ - MIT
21
+ metadata: {}
22
+ rdoc_options: []
23
+ require_paths:
24
+ - lib
25
+ required_ruby_version: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ required_rubygems_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ requirements: []
36
+ rubygems_version: 4.0.6
37
+ specification_version: 4
38
+ summary: Data from https://github.com/TangledWiresOfficial/gb-station-data
39
+ test_files: []