airports 1.7.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +5 -0
- data/.ruby-version +1 -0
- data/.tool-versions +1 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +4 -4
- data/README.md +1 -1
- data/airports.gemspec +1 -0
- data/data/airports.json +1 -1
- data/data/patches.dat +2 -0
- data/lib/airports/airport.rb +0 -2
- data/lib/airports/version.rb +1 -1
- metadata +7 -4
data/data/patches.dat
CHANGED
@@ -4,3 +4,5 @@
|
|
4
4
|
13696,"Istanbul Airport","Istanbul","Turkey","IST","LTFM",41.275278,28.751944,325,3,"E","Europe/Istanbul","airport","OurAirports"
|
5
5
|
14111,"Berlin Brandenburg Airport","Berlin","Germany","BER","EDDB",52.366667,13.503333,157,1,"E","Europe/Berlin","airport","OurAirports"
|
6
6
|
14112,"Misrata Airport","Misrata","Libya","MRA","HLMS",32.3219,15.0574,18,2,"N","Africa/Tripoli","airport","OurAirports"
|
7
|
+
3371,"Changsha Huanghua International Airport","Changsha","China","CSX","ZGHA",28.189199447599997,113.220001221,217,8,"U","Asia/Shanghai","airport","OurAirports"
|
8
|
+
3387,"Ningbo Lishe International Airport","Ningbo","China","NGB","ZSNB",29.82670021057129,121.46199798583984,13,8,"U","Asia/Shanghai","airport","OurAirports"
|
data/lib/airports/airport.rb
CHANGED
@@ -5,7 +5,6 @@ module Airports
|
|
5
5
|
attr_reader :name, :city, :country, :iata, :icao, :latitude, :longitude,
|
6
6
|
:altitude, :timezone, :dst, :tz_name
|
7
7
|
|
8
|
-
# rubocop:disable Metrics/MethodLength
|
9
8
|
def initialize(name:, city:, country:, iata:, icao:, latitude:, longitude:,
|
10
9
|
altitude:, timezone:, dst:, tz_name:)
|
11
10
|
@name = name
|
@@ -20,6 +19,5 @@ module Airports
|
|
20
19
|
@dst = dst
|
21
20
|
@tz_name = tz_name
|
22
21
|
end
|
23
|
-
# rubocop:enable Metrics/MethodLength
|
24
22
|
end
|
25
23
|
end
|
data/lib/airports/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: airports
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Rogers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Access data on airports from around the world
|
14
14
|
email:
|
@@ -22,6 +22,8 @@ files:
|
|
22
22
|
- ".gitignore"
|
23
23
|
- ".rspec"
|
24
24
|
- ".rubocop.yml"
|
25
|
+
- ".ruby-version"
|
26
|
+
- ".tool-versions"
|
25
27
|
- CHANGELOG.md
|
26
28
|
- CODE_OF_CONDUCT.md
|
27
29
|
- Gemfile
|
@@ -39,7 +41,8 @@ files:
|
|
39
41
|
homepage: https://github.com/timrogers/airports
|
40
42
|
licenses:
|
41
43
|
- MIT
|
42
|
-
metadata:
|
44
|
+
metadata:
|
45
|
+
rubygems_mfa_required: 'true'
|
43
46
|
post_install_message:
|
44
47
|
rdoc_options: []
|
45
48
|
require_paths:
|
@@ -55,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
58
|
- !ruby/object:Gem::Version
|
56
59
|
version: '0'
|
57
60
|
requirements: []
|
58
|
-
rubygems_version: 3.
|
61
|
+
rubygems_version: 3.3.3
|
59
62
|
signing_key:
|
60
63
|
specification_version: 4
|
61
64
|
summary: Access data on airports from around the world
|