airports 1.8.1 → 1.8.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/codeql-analysis.yml +4 -4
- data/.github/workflows/test_and_lint.yml +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile +2 -2
- data/README.md +1 -1
- data/data/airports.json +1 -1
- data/data/patches.dat +3 -1
- data/lib/airports/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4749aa453e765581488b9d30e95a5f3059f5beeca8bddc08a9b190af4efa24f8
|
4
|
+
data.tar.gz: 1c9df0662c1c55724578d4b72c38d692b33464a3a36029e9d4c629e96f4dd51e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b58446ff9059f6b9ccb96d53cb4c75ddbd2a4e36001f0fa2729dab0e62caae7c31ad38813ad9ebcfdf8cabbbd9018f5158f7be946d188c24b3d3f98885c344a4
|
7
|
+
data.tar.gz: c79288d2173432b8bd8c6dc05bbefff8c0ba519d76b0eec3659820313232f0ac3fecec3fd1a34cc1d79d475ec01f5ab5d3b6a6757211c89fc22cc882c18212a7
|
@@ -38,11 +38,11 @@ jobs:
|
|
38
38
|
|
39
39
|
steps:
|
40
40
|
- name: Checkout repository
|
41
|
-
uses: actions/checkout@
|
41
|
+
uses: actions/checkout@v4
|
42
42
|
|
43
43
|
# Initializes the CodeQL tools for scanning.
|
44
44
|
- name: Initialize CodeQL
|
45
|
-
uses: github/codeql-action/init@
|
45
|
+
uses: github/codeql-action/init@v3
|
46
46
|
with:
|
47
47
|
languages: ${{ matrix.language }}
|
48
48
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
@@ -56,7 +56,7 @@ jobs:
|
|
56
56
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
57
57
|
# If this step fails, then you should remove it and run the build manually (see below)
|
58
58
|
- name: Autobuild
|
59
|
-
uses: github/codeql-action/autobuild@
|
59
|
+
uses: github/codeql-action/autobuild@v3
|
60
60
|
|
61
61
|
# ℹ️ Command-line programs to run using the OS shell.
|
62
62
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
@@ -69,4 +69,4 @@ jobs:
|
|
69
69
|
# ./location_of_script_within_repo/buildscript.sh
|
70
70
|
|
71
71
|
- name: Perform CodeQL Analysis
|
72
|
-
uses: github/codeql-action/analyze@
|
72
|
+
uses: github/codeql-action/analyze@v3
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -7,8 +7,8 @@ gemspec
|
|
7
7
|
gem "gc_ruboconfig", "~> 3.6.0"
|
8
8
|
gem "pry", "~> 0.14.1"
|
9
9
|
gem "rake", "~> 13.0"
|
10
|
-
gem "rspec", "~> 3.
|
10
|
+
gem "rspec", "~> 3.13.0"
|
11
11
|
gem "rspec-its", "~> 1.3.0"
|
12
12
|
gem "rspec_junit_formatter", "~> 0.6.0"
|
13
|
-
gem "rubocop", "~> 1.
|
13
|
+
gem "rubocop", "~> 1.50.1"
|
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.8.
|
14
|
+
gem "airports", "~> 1.8.3"
|
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`:
|