pheme 4.0.15 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +21 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +7 -7
- data/lib/pheme/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: dd6e1925adecf772b7b5ca09fdde45dbaaba4256cb80bcb65906dd18cd0286fe
|
4
|
+
data.tar.gz: 229444299168954592038df99574cb3166bdf856107f5aea42f0b007c80c9514
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 251c43cca6385824f8726e2437fbf003b7834976de3c7f3d2c22fecac36ec25253dada0c6b60e87015b5909f88511ce26c948477fec07050e9b1d37b1a7c0cb8
|
7
|
+
data.tar.gz: 83d1da2a382a02e558cc05669fd8dea1800ae14823232b72ce94a7085dff27b5ea3274ad94bfb2f31181cb4e3780e788c53ebfa11ddb87d0910d58cbcdeec518
|
data/.github/workflows/main.yml
CHANGED
@@ -10,19 +10,38 @@ jobs:
|
|
10
10
|
build:
|
11
11
|
name: Build
|
12
12
|
runs-on: ubuntu-20.04
|
13
|
+
strategy:
|
14
|
+
matrix:
|
15
|
+
ruby-version: [2.7.5, 3.0.3, 3.1.0]
|
13
16
|
steps:
|
14
17
|
- uses: actions/checkout@v2
|
15
18
|
with:
|
16
19
|
fetch-depth: 0
|
17
|
-
-
|
20
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
21
|
+
uses: ruby/setup-ruby@v1
|
18
22
|
with:
|
19
23
|
bundler-cache: true
|
24
|
+
ruby-version: ${{ matrix.ruby-version }}
|
20
25
|
- name: Lint
|
21
26
|
run: bundle exec rubocop
|
22
27
|
- name: Test
|
23
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
|
24
44
|
- name: Release the gem
|
25
|
-
if: ${{ github.ref == 'refs/heads/main' }}
|
26
45
|
run: |
|
27
46
|
mkdir -p ~/.gem
|
28
47
|
cat << EOF > ~/.gem/credentials
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.7.
|
1
|
+
2.7.5
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,9 @@ 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
|
+
|
7
10
|
## 4.0.15 - 2021-12-03
|
8
11
|
### Changed
|
9
12
|
- Updated dependencies
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pheme (4.0
|
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.
|
23
|
-
aws-sdk-core (3.
|
22
|
+
aws-partitions (1.543.0)
|
23
|
+
aws-sdk-core (3.125.0)
|
24
24
|
aws-eventstream (~> 1, >= 1.0.2)
|
25
25
|
aws-partitions (~> 1, >= 1.525.0)
|
26
26
|
aws-sigv4 (~> 1.1)
|
27
27
|
jmespath (~> 1.0)
|
28
|
-
aws-sdk-sns (1.
|
29
|
-
aws-sdk-core (~> 3, >= 3.
|
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.
|
32
|
-
aws-sdk-core (~> 3, >= 3.
|
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)
|
data/lib/pheme/version.rb
CHANGED
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
|
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:
|
11
|
+
date: 2022-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|