pheme 4.0.12 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0341c558854f04929b34f40b32c9015bd53473444198eb365327faa659a05bc8
4
- data.tar.gz: 5e0497172faf730a7e7622a698194bdd2d5d6509e18a7d0bfecfc129089ab583
3
+ metadata.gz: dd6e1925adecf772b7b5ca09fdde45dbaaba4256cb80bcb65906dd18cd0286fe
4
+ data.tar.gz: 229444299168954592038df99574cb3166bdf856107f5aea42f0b007c80c9514
5
5
  SHA512:
6
- metadata.gz: 1fa984ce1c9c40d4b3245b85f071911f26ed0de106dd374b1e1bea83a102ab3f1875cc4f6af97f1ad5b9ebe09d9ffde6b04467b0c5d8b8adaafc69b5e932037f
7
- data.tar.gz: 3f2c1862664366aec2686e37807cef2a67442450d618be91ea09b17a18b966f2db2d3bb7f256800d3ac7cc9251c63748b21555e0f2870e0cd1d4b0c605b283d3
6
+ metadata.gz: 251c43cca6385824f8726e2437fbf003b7834976de3c7f3d2c22fecac36ec25253dada0c6b60e87015b5909f88511ce26c948477fec07050e9b1d37b1a7c0cb8
7
+ data.tar.gz: 83d1da2a382a02e558cc05669fd8dea1800ae14823232b72ce94a7085dff27b5ea3274ad94bfb2f31181cb4e3780e788c53ebfa11ddb87d0910d58cbcdeec518
@@ -2,23 +2,46 @@
2
2
  name: Pipeline
3
3
  on:
4
4
  push:
5
+ concurrency:
6
+ group: ${{ github.workflow }}-${{ github.ref }}
7
+ cancel-in-progress: true
8
+
5
9
  jobs:
6
10
  build:
7
11
  name: Build
8
12
  runs-on: ubuntu-20.04
13
+ strategy:
14
+ matrix:
15
+ ruby-version: [2.7.5, 3.0.3, 3.1.0]
9
16
  steps:
10
17
  - uses: actions/checkout@v2
11
18
  with:
12
19
  fetch-depth: 0
13
- - uses: ruby/setup-ruby@v1
20
+ - name: Set up Ruby ${{ matrix.ruby-version }}
21
+ uses: ruby/setup-ruby@v1
14
22
  with:
15
23
  bundler-cache: true
24
+ ruby-version: ${{ matrix.ruby-version }}
16
25
  - name: Lint
17
26
  run: bundle exec rubocop
18
27
  - name: Test
19
28
  run: bundle exec rspec
29
+
30
+ # Separate `release` job from `build`, as we only want release to be run once
31
+ # and not run for each ruby version in the matrix:
32
+ release:
33
+ name: Release
34
+ if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
35
+ needs: build
36
+ runs-on: ubuntu-20.04
37
+ steps:
38
+ - uses: actions/checkout@v2
39
+ with:
40
+ fetch-depth: 0
41
+ - uses: ruby/setup-ruby@v1
42
+ with:
43
+ bundler-cache: true
20
44
  - name: Release the gem
21
- if: ${{ github.ref == 'refs/heads/main' }}
22
45
  run: |
23
46
  mkdir -p ~/.gem
24
47
  cat << EOF > ~/.gem/credentials
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.3
1
+ 2.7.5
data/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## 4.1.0 - 2021-12-31
8
+ - Add Ruby 3 support
9
+
10
+ ## 4.0.15 - 2021-12-03
11
+ ### Changed
12
+ - Updated dependencies
13
+
14
+ ## 4.0.14 - 2021-11-05
15
+ ### Changed
16
+ - Update dependencies
17
+
18
+ ## 4.0.13 - 2021-10-12
19
+ ### Changed
20
+ - Update dependencies
21
+
7
22
  ## 4.0.12 - 2021-09-07
8
23
  ### Changed
9
24
  - Update dependencies
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pheme (4.0.12)
4
+ pheme (4.1.0)
5
5
  activesupport (>= 4)
6
6
  aws-sdk-sns (~> 1.1)
7
7
  aws-sdk-sqs (~> 1.3)
@@ -19,17 +19,17 @@ GEM
19
19
  zeitwerk (~> 2.3)
20
20
  ast (2.4.2)
21
21
  aws-eventstream (1.2.0)
22
- aws-partitions (1.496.0)
23
- aws-sdk-core (3.121.0)
22
+ aws-partitions (1.543.0)
23
+ aws-sdk-core (3.125.0)
24
24
  aws-eventstream (~> 1, >= 1.0.2)
25
- aws-partitions (~> 1, >= 1.239.0)
25
+ aws-partitions (~> 1, >= 1.525.0)
26
26
  aws-sigv4 (~> 1.1)
27
27
  jmespath (~> 1.0)
28
- aws-sdk-sns (1.45.0)
29
- aws-sdk-core (~> 3, >= 3.120.0)
28
+ aws-sdk-sns (1.50.0)
29
+ aws-sdk-core (~> 3, >= 3.125.0)
30
30
  aws-sigv4 (~> 1.1)
31
- aws-sdk-sqs (1.44.0)
32
- aws-sdk-core (~> 3, >= 3.120.0)
31
+ aws-sdk-sqs (1.49.0)
32
+ aws-sdk-core (~> 3, >= 3.125.0)
33
33
  aws-sigv4 (~> 1.1)
34
34
  aws-sigv4 (1.4.0)
35
35
  aws-eventstream (~> 1, >= 1.0.2)
@@ -41,12 +41,12 @@ GEM
41
41
  docile (1.4.0)
42
42
  git (1.9.1)
43
43
  rchardet (~> 1.8)
44
- i18n (1.8.10)
44
+ i18n (1.8.11)
45
45
  concurrent-ruby (~> 1.0)
46
46
  jmespath (1.4.0)
47
47
  minitest (5.14.4)
48
- parallel (1.20.1)
49
- parser (3.0.2.0)
48
+ parallel (1.21.0)
49
+ parser (3.0.3.1)
50
50
  ast (~> 2.4.1)
51
51
  rack (2.2.3)
52
52
  rainbow (3.0.0)
@@ -72,30 +72,29 @@ GEM
72
72
  rspec-mocks (3.10.2)
73
73
  diff-lcs (>= 1.2.0, < 2.0)
74
74
  rspec-support (~> 3.10.0)
75
- rspec-support (3.10.2)
75
+ rspec-support (3.10.3)
76
76
  rspec_junit_formatter (0.4.1)
77
77
  rspec-core (>= 2, < 4, != 2.12.0)
78
- rubocop (1.20.0)
78
+ rubocop (1.23.0)
79
79
  parallel (~> 1.10)
80
80
  parser (>= 3.0.0.0)
81
81
  rainbow (>= 2.2.2, < 4.0)
82
82
  regexp_parser (>= 1.8, < 3.0)
83
83
  rexml
84
- rubocop-ast (>= 1.9.1, < 2.0)
84
+ rubocop-ast (>= 1.12.0, < 2.0)
85
85
  ruby-progressbar (~> 1.7)
86
86
  unicode-display_width (>= 1.4.0, < 3.0)
87
- rubocop-ast (1.11.0)
87
+ rubocop-ast (1.14.0)
88
88
  parser (>= 3.0.1.1)
89
- rubocop-performance (1.11.5)
89
+ rubocop-performance (1.12.0)
90
90
  rubocop (>= 1.7.0, < 2.0)
91
91
  rubocop-ast (>= 0.4.0)
92
- rubocop-rails (2.11.3)
92
+ rubocop-rails (2.12.4)
93
93
  activesupport (>= 4.2.0)
94
94
  rack (>= 1.1)
95
95
  rubocop (>= 1.7.0, < 2.0)
96
- rubocop-rspec (2.4.0)
97
- rubocop (~> 1.0)
98
- rubocop-ast (>= 1.1.0)
96
+ rubocop-rspec (2.6.0)
97
+ rubocop (~> 1.19)
99
98
  rubocop-vendor (0.6.1)
100
99
  rubocop (>= 0.53.0)
101
100
  ruby-progressbar (1.11.0)
@@ -105,18 +104,18 @@ GEM
105
104
  simplecov_json_formatter (~> 0.1)
106
105
  simplecov-html (0.12.3)
107
106
  simplecov_json_formatter (0.1.3)
108
- smarter_csv (1.2.8)
107
+ smarter_csv (1.2.9)
109
108
  thor (1.1.0)
110
109
  tzinfo (2.0.4)
111
110
  concurrent-ruby (~> 1.0)
112
- unicode-display_width (2.0.0)
113
- ws-style (6.9.6)
111
+ unicode-display_width (2.1.0)
112
+ ws-style (6.11.3)
114
113
  rubocop (>= 1.12.1)
115
114
  rubocop-performance (>= 1.10.2)
116
115
  rubocop-rails (>= 2.9.1)
117
116
  rubocop-rspec (>= 2.2.0)
118
117
  rubocop-vendor (>= 0.6.0)
119
- zeitwerk (2.4.2)
118
+ zeitwerk (2.5.1)
120
119
 
121
120
  PLATFORMS
122
121
  ruby
@@ -135,4 +134,4 @@ DEPENDENCIES
135
134
  ws-style
136
135
 
137
136
  BUNDLED WITH
138
- 2.2.21
137
+ 2.2.32
data/lib/pheme/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pheme
2
- VERSION = '4.0.12'.freeze
2
+ VERSION = '4.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pheme
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.12
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Graham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-07 00:00:00.000000000 Z
11
+ date: 2022-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport