airports 1.8.0 → 1.8.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Airports
4
- VERSION = "1.8.0"
4
+ VERSION = "1.8.1"
5
5
  end
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.8.0
4
+ version: 1.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Rogers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-13 00:00:00.000000000 Z
11
+ date: 2023-02-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Access data on airports from around the world
14
14
  email:
@@ -17,8 +17,9 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - ".circleci/config.yml"
21
20
  - ".github/dependabot.yml"
21
+ - ".github/workflows/codeql-analysis.yml"
22
+ - ".github/workflows/test_and_lint.yml"
22
23
  - ".gitignore"
23
24
  - ".rspec"
24
25
  - ".rubocop.yml"
@@ -58,7 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
59
  - !ruby/object:Gem::Version
59
60
  version: '0'
60
61
  requirements: []
61
- rubygems_version: 3.3.3
62
+ rubygems_version: 3.3.7
62
63
  signing_key:
63
64
  specification_version: 4
64
65
  summary: Access data on airports from around the world
data/.circleci/config.yml DELETED
@@ -1,54 +0,0 @@
1
- version: 2
2
- references:
3
- steps: &steps
4
- - checkout
5
-
6
- - type: cache-restore
7
- key: airports-bundler-{{ checksum "airports.gemspec" }}
8
-
9
- - run: gem install bundler
10
-
11
- - run: bundle install --path vendor/bundle
12
-
13
- - type: cache-save
14
- key: airports-bundler-{{ checksum "airports.gemspec" }}
15
- paths:
16
- - vendor/bundle
17
-
18
- - type: shell
19
- command: |
20
- bundle exec rspec --profile 10 \
21
- --format RspecJunitFormatter \
22
- --out /tmp/test-results/rspec.xml \
23
- --format progress \
24
- spec
25
-
26
- - type: store_test_results
27
- path: /tmp/test-results
28
-
29
- - run: bundle exec rubocop
30
- jobs:
31
- build-ruby26:
32
- docker:
33
- - image: ruby:2.6
34
- steps: *steps
35
- build-ruby27:
36
- docker:
37
- - image: ruby:2.7
38
- steps: *steps
39
- build-ruby30:
40
- docker:
41
- - image: ruby:3.0
42
- steps: *steps
43
- build-ruby31:
44
- docker:
45
- - image: ruby:3.1
46
- steps: *steps
47
- workflows:
48
- version: 2
49
- tests:
50
- jobs:
51
- - build-ruby26
52
- - build-ruby27
53
- - build-ruby30
54
- - build-ruby31