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.
- checksums.yaml +4 -4
- data/.devcontainer/devcontainer.json +8 -0
- data/.github/workflows/test_and_lint.yml +3 -3
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +38 -26
- data/Gemfile +4 -4
- data/README.md +2 -3
- data/Rakefile +1 -1
- data/data/airports.json +1 -1
- data/data/patches.dat +1 -0
- data/lib/airports/version.rb +1 -1
- data/lib/airports.rb +8 -0
- metadata +4 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a1853155bd573550bea1c414b073e2490705d963f1807f75f271f16dc255f3a
|
4
|
+
data.tar.gz: c587adaec98f6b8356cfa5c62f3e22a7314b2b3f90fb13190a10d2c79c0e26cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37ecfabf78abd11f14451bb03689b2979c0e4ef62931976197e4641a2ee477eaf8850f859677ff1b46d7682e9ae20afa15ee1e3f80003577c22bc5ad5c426bb1
|
7
|
+
data.tar.gz: c81bd60a32b5143c3a554f0659f3a6816fd47f5f8edaa1f82cef4367654c280e0be98d18f0aef4d5f4818af3a35d8ac671c25a8b521bef216f0449ca4ad8dc94
|
@@ -1,4 +1,4 @@
|
|
1
|
-
name:
|
1
|
+
name: "Test and lint"
|
2
2
|
on:
|
3
3
|
push:
|
4
4
|
branches: [main]
|
@@ -9,7 +9,7 @@ jobs:
|
|
9
9
|
runs-on: ubuntu-latest
|
10
10
|
strategy:
|
11
11
|
matrix:
|
12
|
-
ruby-version: [
|
12
|
+
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"]
|
13
13
|
steps:
|
14
14
|
- name: Checkout code
|
15
15
|
uses: actions/checkout@v4
|
@@ -23,4 +23,4 @@ jobs:
|
|
23
23
|
- name: Lint Ruby files
|
24
24
|
run: bundle exec rubocop
|
25
25
|
- name: Run RSpec tests
|
26
|
-
run: bundle exec rspec
|
26
|
+
run: bundle exec rspec
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.6
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.
|
1
|
+
ruby 3.4.2
|
data/CHANGELOG.md
CHANGED
@@ -1,64 +1,76 @@
|
|
1
|
+
## v1.11.0 (24 March, 2025)
|
2
|
+
|
3
|
+
- Add Monmouth Executive Airport (BLM) (@FinnLawrence)
|
4
|
+
|
5
|
+
## v1.10.0 (29 November, 2024)
|
6
|
+
|
7
|
+
- Add new `.icao_codes` method (@FinnLawrence)
|
8
|
+
|
9
|
+
## v1.9.0 (4 May, 2024)
|
10
|
+
|
11
|
+
- Add new `.find_all_by_country_name` method (@wilburhimself)
|
12
|
+
|
1
13
|
## v1.8.3 (31 March, 2024)
|
2
14
|
|
3
|
-
|
15
|
+
- Add Kertajati International Airport (KJT) (@chakraskun)
|
4
16
|
|
5
17
|
## v1.8.2 (22 March, 2024)
|
6
18
|
|
7
|
-
|
19
|
+
- Add the new Tulum Airport (TQO) (@rmm5t)
|
8
20
|
|
9
21
|
## v1.8.1 (17 February 2023)
|
10
22
|
|
11
|
-
|
23
|
+
- Fix the name of Tromsø Airport (TOS) (@pcothenet)
|
12
24
|
|
13
25
|
## v1.8.0 (13 March 2022)
|
14
26
|
|
15
|
-
|
16
|
-
|
27
|
+
- Add support for Ruby 3.1 (@timrogers)
|
28
|
+
- Fix the names of Ningbo (NGB) and Changsha (CSX) airports in China (@ratazzi)
|
17
29
|
|
18
30
|
# v1.7.0 (25 August 2021)
|
19
31
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
32
|
+
- Add support for Ruby 3.0 (@timrogers, with thanks to @kleinjm)
|
33
|
+
- Add Misrata Airport (`MRA`) in Libya (@timrogers, with thanks to @a21-kevin)
|
34
|
+
- Drop support for Ruby 2.4 and 2.5, which are no longer officially supported (@timrogers)
|
35
|
+
- Remove unnecessary dependencies from the gemspec, moving them to the `Gemfile` (@timrogers)
|
24
36
|
|
25
37
|
# v1.6.1 (9 May 2020)
|
26
38
|
|
27
|
-
|
28
|
-
|
39
|
+
- Add an entry for Berlin Brandenburg Airport (`BER`), which is missing from [OpenFlights](http://openflights.org) (@PavelWeSki)
|
40
|
+
- Update airport data with the latest from [OpenFlights](http://openflights.org)
|
29
41
|
|
30
42
|
# v1.6.0 (25 January 2020)
|
31
43
|
|
32
|
-
|
33
|
-
|
44
|
+
- Update airport data with the latest from [OpenFlights](http://openflights.org)
|
45
|
+
- Refactor how incorrect or missing data from OpenFlights is patched (@MatjazKavcic)
|
34
46
|
|
35
47
|
# v1.5.0 (5 December 2019)
|
36
48
|
|
37
|
-
|
38
|
-
are located in with `Airports.find_all_by_city_name` (@viral810, @timrogers)
|
39
|
-
|
40
|
-
and the code is cleaner (@timrogers)
|
49
|
+
- Support looking up airports by the name of the city they
|
50
|
+
are located in with `Airports.find_all_by_city_name` (@viral810, @timrogers)
|
51
|
+
- Refactor `Airports` so `Airport` objects are only generated once
|
52
|
+
and the code is cleaner (@timrogers)
|
41
53
|
|
42
54
|
# v1.4.1 (14 November 2019)
|
43
55
|
|
44
|
-
|
45
|
-
|
56
|
+
- Correct the time zone of Istanbul Airport (`IST`) (@aliismayilov)
|
57
|
+
- Correct the name of Aviador Carlos Campos Airport (`CPC`) (@jpgarritano)
|
46
58
|
|
47
59
|
# v1.4.0 (30 June 2019)
|
48
60
|
|
49
|
-
|
50
|
-
|
51
|
-
|
61
|
+
- Drop support for Ruby 2.2 and 2.3, which are no longer officially supported (@timrogers)
|
62
|
+
- Test against Ruby 2.6 (@timrogers)
|
63
|
+
- Convert "nulls" in the source data, expressed as "\\N", to Ruby `nil`s (@gabebw)
|
52
64
|
|
53
65
|
# v1.3.0 (26 June 2019)
|
54
66
|
|
55
|
-
|
67
|
+
- Expose the time zone that an airport is located in with `#tz_name` (@gabebw)
|
56
68
|
|
57
69
|
# v1.2.0 (11 March 2018)
|
58
70
|
|
59
|
-
|
60
|
-
|
71
|
+
- Drop support for Ruby 2.2, which has reached end-of-life and no longer receives security updates (@timrogers)
|
72
|
+
- Enforce code style using Rubocop (@timrogers)
|
61
73
|
|
62
74
|
# v1.1.0 (11 March 2018)
|
63
75
|
|
64
|
-
|
76
|
+
- Add new `.find_by_icao_code` for finding airports by their ICAO code (@ryanburnette)
|
data/Gemfile
CHANGED
@@ -4,11 +4,11 @@ source 'https://rubygems.org'
|
|
4
4
|
|
5
5
|
gemspec
|
6
6
|
|
7
|
-
gem "gc_ruboconfig", "~>
|
8
|
-
gem "pry", "~> 0.
|
7
|
+
gem "gc_ruboconfig", "~> 5.0.2"
|
8
|
+
gem "pry", "~> 0.15.0"
|
9
9
|
gem "rake", "~> 13.0"
|
10
10
|
gem "rspec", "~> 3.13.0"
|
11
|
-
gem "rspec-its", "~>
|
11
|
+
gem "rspec-its", "~> 2.0.0"
|
12
12
|
gem "rspec_junit_formatter", "~> 0.6.0"
|
13
|
-
gem "rubocop", "~> 1.
|
13
|
+
gem "rubocop", "~> 1.74.0"
|
14
14
|
gem "rubocop-rake", "~> 0.6.0", require: false
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@ It's based on data from [OpenFlights](http://openflights.org), with a bit of mas
|
|
11
11
|
Install the gem by adding it to your Gemfile:
|
12
12
|
|
13
13
|
```ruby
|
14
|
-
gem "airports", "~> 1.
|
14
|
+
gem "airports", "~> 1.11.0"
|
15
15
|
```
|
16
16
|
|
17
17
|
You can then look up an airport by its IATA code (e.g. `LHR` for London Heathrow) using `Airports.find_by_iata_code`, which returns an object with a bunch of accessors like `name` and `city`:
|
@@ -48,7 +48,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
48
48
|
|
49
49
|
To update the data included in the gem, just run `bundle exec rake update` and make a pull request with the changes. This will pull the latest data from [OpenFlights](http://openflights.org).
|
50
50
|
|
51
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/timrogers/airports. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
51
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/timrogers/airports. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://contributor-covenant.org) code of conduct.
|
52
52
|
|
53
53
|
## Acknowledgements
|
54
54
|
|
@@ -57,4 +57,3 @@ Big thanks to [OpenFlights](http://openflights.org) for collecting and making th
|
|
57
57
|
## License
|
58
58
|
|
59
59
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
60
|
-
|
data/Rakefile
CHANGED
@@ -23,7 +23,7 @@ task :update do
|
|
23
23
|
raw_data = URI.open("https://raw.githubusercontent.com/jpatokal/openflights/master/" \
|
24
24
|
"data/airports.dat").read + File.read("./data/patches.dat")
|
25
25
|
|
26
|
-
cleaned_data = raw_data.gsub(
|
26
|
+
cleaned_data = raw_data.gsub('\"', '""')
|
27
27
|
|
28
28
|
cleaned_data = CSV.parse(cleaned_data).each_with_object({}) do |row, accumulator|
|
29
29
|
iata_code = row[4]
|