airports 1.8.3 → 1.11.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.
data/data/patches.dat CHANGED
@@ -6,5 +6,6 @@
6
6
  14112,"Misrata Airport","Misrata","Libya","MRA","HLMS",32.3219,15.0574,18,2,"N","Africa/Tripoli","airport","OurAirports"
7
7
  3371,"Changsha Huanghua International Airport","Changsha","China","CSX","ZGHA",28.189199447599997,113.220001221,217,8,"U","Asia/Shanghai","airport","OurAirports"
8
8
  3387,"Ningbo Lishe International Airport","Ningbo","China","NGB","ZSNB",29.82670021057129,121.46199798583984,13,8,"U","Asia/Shanghai","airport","OurAirports"
9
+ 99997,"Monmouth Executive Airport","Belmar-Farmingdale","United States","BLM","KBLM",40.186667,-74.124444,153,-5,"A","America/New_York","airport","OurAirports"
9
10
  99998,"Kertajati International Airport","Majalengka","Indonesia","KJT","WICA",-6.6519467,108.1551111,36,7,"N","Asia/Jakarta","airport","OurAirports"
10
11
  99999,"Felipe Carrillo Puerto International Airport","Tulum","Mexico","TQO","MMTL",20.1662,-87.6592,66,"S","America/Cancun","airport","OurAirports"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Airports
4
- VERSION = "1.8.3"
4
+ VERSION = "1.11.0"
5
5
  end
data/lib/airports.rb CHANGED
@@ -21,10 +21,18 @@ module Airports
21
21
  all.select { |airport| airport.city.casecmp(city_name).zero? }
22
22
  end
23
23
 
24
+ def self.find_all_by_country_name(country_name)
25
+ all.select { |airport| airport.country.casecmp(country_name).zero? }
26
+ end
27
+
24
28
  def self.iata_codes
25
29
  parsed_data.keys
26
30
  end
27
31
 
32
+ def self.icao_codes
33
+ parsed_data.values.map { |airport_data| airport_data["icao"] }
34
+ end
35
+
28
36
  def self.all
29
37
  @all ||= parsed_data.values.map do |airport_data|
30
38
  airport_from_parsed_data_element(airport_data)
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airports
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.3
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Rogers
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-03-31 00:00:00.000000000 Z
10
+ date: 2025-03-24 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Access data on airports from around the world
14
13
  email:
@@ -17,6 +16,7 @@ executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
19
18
  files:
19
+ - ".devcontainer/devcontainer.json"
20
20
  - ".github/dependabot.yml"
21
21
  - ".github/workflows/codeql-analysis.yml"
22
22
  - ".github/workflows/test_and_lint.yml"
@@ -44,7 +44,6 @@ licenses:
44
44
  - MIT
45
45
  metadata:
46
46
  rubygems_mfa_required: 'true'
47
- post_install_message:
48
47
  rdoc_options: []
49
48
  require_paths:
50
49
  - lib
@@ -59,8 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
59
58
  - !ruby/object:Gem::Version
60
59
  version: '0'
61
60
  requirements: []
62
- rubygems_version: 3.3.7
63
- signing_key:
61
+ rubygems_version: 3.6.2
64
62
  specification_version: 4
65
63
  summary: Access data on airports from around the world
66
64
  test_files: []