├── .devcontainer └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── test_and_lint.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .tool-versions ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── airports.gemspec ├── bin ├── console └── setup ├── data ├── airports.json └── patches.dat ├── lib ├── airports.rb └── airports │ ├── airport.rb │ └── version.rb └── spec ├── airports_spec.rb └── spec_helper.rb /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test_and_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/.github/workflows/test_and_lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.6 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.3.6 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/Rakefile -------------------------------------------------------------------------------- /airports.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/airports.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -euo pipefail 3 | IFS=$'\n\t' 4 | 5 | bundle install 6 | -------------------------------------------------------------------------------- /data/airports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/data/airports.json -------------------------------------------------------------------------------- /data/patches.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/data/patches.dat -------------------------------------------------------------------------------- /lib/airports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/lib/airports.rb -------------------------------------------------------------------------------- /lib/airports/airport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/lib/airports/airport.rb -------------------------------------------------------------------------------- /lib/airports/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Airports 4 | VERSION = "1.12.0" 5 | end 6 | -------------------------------------------------------------------------------- /spec/airports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/spec/airports_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timrogers/airports/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------