sm_sms_campaign_webhook 2.1.0 → 3.0.0

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: fdb779a5ea0f6c655227aebf4243bf8a3403a5cebe5c87de25e0a17aeb959019
4
- data.tar.gz: d91f616682fbf09b20f4f553eaae9ed786a8799ec9e20c4952cd7c4c93610944
3
+ metadata.gz: b05a85014b8e3b05f041905992c34627a73ee0175af050c87c3f8891d2ef5986
4
+ data.tar.gz: b105de1d167bb1ad583bae67154aa5d310dd17ca7bfb52a6a2bd3df1e049c557
5
5
  SHA512:
6
- metadata.gz: 95bbdbbe988221f5604738a398d7a10a457a702839e791f59821367770de8cd241357635443a312743d77d9c25c1c6e4870a2a18ea8f8c765e7c878badc2b73b
7
- data.tar.gz: 19029ca02d3afa4ff29872876cb80ba31ca0abf9b25d59b9f645c9d18a2a89c6daa97be24db210beb80ac4227e9ddc5697781e735c12c298d4a7394953b27539
6
+ metadata.gz: d810c8b4fd24a8981c96cba9f07f1f79bef1ccb47235ab0f544f5322103d2095b2259342d8bc03f8e9d57fdbf4611a8ec25bda16b544a1fb6cb27db30b31c899
7
+ data.tar.gz: 2ab998b053c16a291e421bd3e59f8f2610feaf64c86e9161d55e395771304b689bc5efd954c6b8c2865c924fe0470b54f8e3bb2bf8880aec5beba2730e53bbfa
data/CHANGELOG.md CHANGED
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [3.0.0] - [2024-09-11]
10
+ ### Added
11
+ - Ruby 3.2.x support
12
+ - Ruby 3.3.x support
13
+ - Rails 7.1.x support
14
+ - Rails 7.2.x support
15
+
16
+ ### Removed
17
+ - Ruby 2.7.x support
18
+ - Ruby 3.0.x support
19
+ - Support for Rails < 7.x
20
+
21
+ ### Changed
22
+ - CI to test against Ruby 3.2.x
23
+ - CI to test against Ruby 3.3.x
24
+
9
25
  ## [2.1.0] - 2022-01-07
10
26
  ### Added
11
27
  - Ruby 3.1.x support
data/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
 
5
5
  [![Gem Version](https://badge.fury.io/rb/sm_sms_campaign_webhook.svg)](https://rubygems.org/gems/sm_sms_campaign_webhook)
6
6
  [![CI](https://github.com/SouthernMade/sm_sms_campaign_webhook/actions/workflows/ci.yml/badge.svg)](https://github.com/SouthernMade/sm_sms_campaign_webhook/actions/workflows/ci.yml)
7
+ [![Linting](https://github.com/SouthernMade/sm_sms_campaign_webhook/actions/workflows/linting.yml/badge.svg)](https://github.com/SouthernMade/sm_sms_campaign_webhook/actions/workflows/linting.yml)
8
+ [![Security](https://github.com/SouthernMade/sm_sms_campaign_webhook/actions/workflows/security.yml/badge.svg)](https://github.com/SouthernMade/sm_sms_campaign_webhook/actions/workflows/security.yml)
7
9
  [![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/2298f12a7d6f31688c9c/maintainability)](https://codeclimate.com/github/SouthernMade/sm_sms_campaign_webhook/maintainability)
8
10
  [![Code Climate Test Coverage](https://api.codeclimate.com/v1/badges/2298f12a7d6f31688c9c/test_coverage)](https://codeclimate.com/github/SouthernMade/sm_sms_campaign_webhook/test_coverage)
9
11
 
@@ -42,12 +44,12 @@ Work closely with your Southern Made project manager to gather details about wha
42
44
 
43
45
  ## Installation
44
46
 
45
- This gem is tested with Rails 6.0.x, 6.1.x, 7.0.x versions.
47
+ This gem is tested with Rails 7.0.x, 7.1.x, 7.2.x versions.
46
48
 
47
49
  Add this line to your application's Gemfile:
48
50
 
49
51
  ```ruby
50
- gem "sm_sms_campaign_webhook", "~> 2.1"
52
+ gem "sm_sms_campaign_webhook", "~> 3.0"
51
53
  ```
52
54
 
53
55
  And then execute:
@@ -2,5 +2,5 @@
2
2
 
3
3
  module SmSmsCampaignWebhook
4
4
  # @return [String] gem version
5
- VERSION = "2.1.0"
5
+ VERSION = "3.0.0"
6
6
  end
@@ -33,15 +33,15 @@ Gem::Specification.new do |spec|
33
33
  spec.require_paths = ["lib"]
34
34
 
35
35
  # Required version of Ruby guided by Rails.
36
- spec.required_ruby_version = ">= 2.7.5"
36
+ spec.required_ruby_version = ">= 3.1.6"
37
37
 
38
38
  # Runtime dependencies.
39
- spec.add_dependency "rails", [">= 6.0", "< 7.1"]
39
+ spec.add_dependency "rails", [">= 7.0", "< 8.0"]
40
40
 
41
41
  # Development + test dependencies.
42
42
  spec.add_development_dependency "bundler", "~> 2.0"
43
43
  spec.add_development_dependency "rake", "~> 13.0"
44
- spec.add_development_dependency "rspec-rails", "~> 5.0"
44
+ spec.add_development_dependency "rspec-rails", ">= 7.0"
45
45
  spec.add_development_dependency "simplecov", "~> 0.20"
46
46
  spec.add_development_dependency "standard", "~> 1.0"
47
47
  spec.add_development_dependency "yard", "~> 0.9"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sm_sms_campaign_webhook
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dykes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-01-07 00:00:00.000000000 Z
12
+ date: 2024-09-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -17,20 +17,20 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: '6.0'
20
+ version: '7.0'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '7.1'
23
+ version: '8.0'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
28
  - - ">="
29
29
  - !ruby/object:Gem::Version
30
- version: '6.0'
30
+ version: '7.0'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '7.1'
33
+ version: '8.0'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: bundler
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -63,16 +63,16 @@ dependencies:
63
63
  name: rspec-rails
64
64
  requirement: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '5.0'
68
+ version: '7.0'
69
69
  type: :development
70
70
  prerelease: false
71
71
  version_requirements: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '5.0'
75
+ version: '7.0'
76
76
  - !ruby/object:Gem::Dependency
77
77
  name: simplecov
78
78
  requirement: !ruby/object:Gem::Requirement
@@ -158,7 +158,7 @@ licenses:
158
158
  metadata:
159
159
  allowed_push_host: https://rubygems.org
160
160
  changelog_uri: https://github.com/SouthernMade/sm_sms_campaign_webhook/blob/develop/CHANGELOG.md
161
- documentation_uri: https://www.rubydoc.info/gems/sm_sms_campaign_webhook/2.1.0
161
+ documentation_uri: https://www.rubydoc.info/gems/sm_sms_campaign_webhook/3.0.0
162
162
  homepage_uri: https://github.com/SouthernMade/sm_sms_campaign_webhook
163
163
  source_code_uri: https://github.com/SouthernMade/sm_sms_campaign_webhook
164
164
  post_install_message:
@@ -169,14 +169,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
169
169
  requirements:
170
170
  - - ">="
171
171
  - !ruby/object:Gem::Version
172
- version: 2.7.5
172
+ version: 3.1.6
173
173
  required_rubygems_version: !ruby/object:Gem::Requirement
174
174
  requirements:
175
175
  - - ">="
176
176
  - !ruby/object:Gem::Version
177
177
  version: '0'
178
178
  requirements: []
179
- rubygems_version: 3.3.4
179
+ rubygems_version: 3.5.18
180
180
  signing_key:
181
181
  specification_version: 4
182
182
  summary: Middleware providing webhook for Southern Made SMS Campaign Engagement.