pheme 5.1.12 → 5.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a98956438d45e80beb1c5d0ec9764aac337a7ad3d4905dbcfcc232c9a93d9800
4
- data.tar.gz: 186df42815116e88405b868f8138c31f4aff223377258441700214fb2aa4b574
3
+ metadata.gz: 9ae2a4bbbabf23f3e6bf104187bc92ce39af56867f061d4549fc26c576c2b550
4
+ data.tar.gz: da95bcb380741b1b61f6a53c3176beb0ef3e1ec43c2249e992823a8012ecdf2e
5
5
  SHA512:
6
- metadata.gz: b357cbfbf90b5e25f84d582ec288de13f1748191c8fe2deab4336062a831673e58ce21574a3ef9c90f7dba65963dc582e1e4f7f641552b2dd4a5ca3246b38605
7
- data.tar.gz: 3f55f1d69d67357fa6705febb7dce59a5ef54272768ec1caae3bc8deb6746548f3132e46afdba475d0ef81d46adfdaf51559de24dc4df0294f23e5b35ce55a3c
6
+ metadata.gz: de3334a45a1cda9f1d15b46312b9d5ed6b2b49fe38a6a662674ec97ebc9192042a73b29ef1239c5e15f58cb5c8d73829de5b126c2f5418d6941f9a9bb12bda9a
7
+ data.tar.gz: 40e6785e527665870922cf29c05e5c64aac13b50b86ac14976d7546f247af94962e0d9953fd02add1e6fbb39d86c4e9f47183ff4dbecf38121a103a324062f4a
@@ -12,9 +12,9 @@ jobs:
12
12
  runs-on: ubuntu-22.04
13
13
  strategy:
14
14
  matrix:
15
- ruby-version: [2.7.7, 3.2.1]
15
+ ruby-version: [3.0.6, 3.1.4, 3.2.2]
16
16
  steps:
17
- - uses: actions/checkout@v2
17
+ - uses: actions/checkout@v3
18
18
  with:
19
19
  fetch-depth: 0
20
20
  - name: Set up Ruby ${{ matrix.ruby-version }}
@@ -33,9 +33,9 @@ jobs:
33
33
  name: Release
34
34
  if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
35
35
  needs: build
36
- runs-on: ubuntu-20.04
36
+ runs-on: ubuntu-22.04
37
37
  steps:
38
- - uses: actions/checkout@v2
38
+ - uses: actions/checkout@v3
39
39
  with:
40
40
  fetch-depth: 0
41
41
  - name: Set up Ruby
@@ -5,9 +5,9 @@ on:
5
5
 
6
6
  jobs:
7
7
  stale:
8
- runs-on: ubuntu-latest
8
+ runs-on: ubuntu-22.04
9
9
  steps:
10
- - uses: actions/stale@v4
10
+ - uses: actions/stale@v8
11
11
  with:
12
12
  days-before-stale: 30
13
13
  days-before-close: 30
data/.rubocop.yml CHANGED
@@ -6,4 +6,4 @@ inherit_gem:
6
6
 
7
7
  AllCops:
8
8
  # Specify your target Ruby version here (only major/minor versions):
9
- TargetRubyVersion: 2.7
9
+ TargetRubyVersion: 3.0
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.6
1
+ 3.0.6
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ 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
+ ## 5.1.13 - 2023-04-14
8
+ ### Changed
9
+ - Removed Ruby 2 support
10
+
7
11
  ## 5.1.12 - 2023-03-24
8
12
  ### Changed
9
13
  - Updated dependencies
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pheme (5.1.12)
4
+ pheme (5.1.13)
5
5
  activesupport (>= 4)
6
6
  aws-sdk-sns (~> 1.1)
7
7
  aws-sdk-sqs (~> 1.3)
@@ -141,4 +141,4 @@ DEPENDENCIES
141
141
  ws-style
142
142
 
143
143
  BUNDLED WITH
144
- 2.3.26
144
+ 2.4.12
data/lib/pheme/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pheme
2
- VERSION = '5.1.12'.freeze
2
+ VERSION = '5.1.13'.freeze
3
3
  end
data/pheme.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ['lib']
20
20
  s.license = 'MIT'
21
21
 
22
- s.required_ruby_version = '>= 2.7.3'
22
+ s.required_ruby_version = '>= 3.0'
23
23
 
24
24
  s.add_dependency 'activesupport', '>= 4'
25
25
  s.add_dependency 'aws-sdk-sns', '~> 1.1'
data/spec/spec_helper.rb CHANGED
@@ -29,4 +29,4 @@ def use_default_configuration!
29
29
  end
30
30
  end
31
31
 
32
- Dir["./spec/support/**/*.rb"].sort.each { |f| require f }
32
+ Dir["./spec/support/**/*.rb"].each { |f| require f }
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: 5.1.12
4
+ version: 5.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Graham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-24 00:00:00.000000000 Z
11
+ date: 2023-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -271,14 +271,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
271
271
  requirements:
272
272
  - - ">="
273
273
  - !ruby/object:Gem::Version
274
- version: 2.7.3
274
+ version: '3.0'
275
275
  required_rubygems_version: !ruby/object:Gem::Requirement
276
276
  requirements:
277
277
  - - ">="
278
278
  - !ruby/object:Gem::Version
279
279
  version: '0'
280
280
  requirements: []
281
- rubygems_version: 3.1.6
281
+ rubygems_version: 3.2.33
282
282
  signing_key:
283
283
  specification_version: 4
284
284
  summary: Ruby SNS publisher + SQS poller & message handler