sm_sms_campaign_webhook 2.0.1 → 2.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: 766f64052fb812650ea89b0871edb9a2f3dac39a2db04d72523f1789d3efbd9a
4
- data.tar.gz: f3ac12fefbb6bc5544809e644334d24c4aa6326ae5c8a42947b2455b49abcce9
3
+ metadata.gz: fdb779a5ea0f6c655227aebf4243bf8a3403a5cebe5c87de25e0a17aeb959019
4
+ data.tar.gz: d91f616682fbf09b20f4f553eaae9ed786a8799ec9e20c4952cd7c4c93610944
5
5
  SHA512:
6
- metadata.gz: 9a6da01e59b28dc8f218fb3ba2879af0e76cc5ca99d64bd8551eec53283c8b5ff9871cabb850e424243d4ac00ba3e2d82f502dae429d3b7319add4640cbc2cfe
7
- data.tar.gz: a06e73ad66c6eace80e5fddcb9a5acba77d940f867824fc5f0156f9116be5da7a9678af6767f77d6c6286f8bdc1b1c5dcf3e4bb7cfdf37c46d1a141d1a1b0712
6
+ metadata.gz: 95bbdbbe988221f5604738a398d7a10a457a702839e791f59821367770de8cd241357635443a312743d77d9c25c1c6e4870a2a18ea8f8c765e7c878badc2b73b
7
+ data.tar.gz: 19029ca02d3afa4ff29872876cb80ba31ca0abf9b25d59b9f645c9d18a2a89c6daa97be24db210beb80ac4227e9ddc5697781e735c12c298d4a7394953b27539
data/CHANGELOG.md CHANGED
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [2.1.0] - 2022-01-07
10
+ ### Added
11
+ - Ruby 3.1.x support
12
+ - Rails 7.0.x support
13
+
14
+ ### Changed
15
+ - Require Ruby >= 2.7.5
16
+ - CI to test against Ruby 3.1.x
17
+ - CI to test against Rails 7.0.x
18
+
19
+ ### Removed
20
+ - Ruby 2.6.x support
21
+
9
22
  ## [2.0.1] - 2020-12-31
10
23
  ### Removed
11
24
  - Ruby 2.5.x support
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Southern Made - Galaxy Logo](https://raw.github.com/SouthernMade/sm_sms_campaign_webhook/develop/logo_galaxymark.png)](https://www.southernmade.com/) by [Southern Made](https://www.southernmade.com/)
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
- [![Travis Build Status](https://travis-ci.org/SouthernMade/sm_sms_campaign_webhook.svg?branch=develop)](https://travis-ci.org/SouthernMade/sm_sms_campaign_webhook)
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
7
  [![Code Climate Maintainability](https://api.codeclimate.com/v1/badges/2298f12a7d6f31688c9c/maintainability)](https://codeclimate.com/github/SouthernMade/sm_sms_campaign_webhook/maintainability)
8
8
  [![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
9
 
@@ -42,12 +42,12 @@ Work closely with your Southern Made project manager to gather details about wha
42
42
 
43
43
  ## Installation
44
44
 
45
- This gem is tested with Rails 6.0.x, 6.1.x versions.
45
+ This gem is tested with Rails 6.0.x, 6.1.x, 7.0.x versions.
46
46
 
47
47
  Add this line to your application's Gemfile:
48
48
 
49
49
  ```ruby
50
- gem "sm_sms_campaign_webhook", "~> 1.0"
50
+ gem "sm_sms_campaign_webhook", "~> 2.1"
51
51
  ```
52
52
 
53
53
  And then execute:
@@ -383,7 +383,7 @@ This project uses Rspec for testing. Specs must be green for any PR to be accept
383
383
 
384
384
  $ bundle exec rspec
385
385
 
386
- The project is setup with [Travis CI](https://travis-ci.org) to automate test. The various environments that are regularly tested can be seen in [.travis.yml](https://github.com/SouthernMade/sm_sms_campaign_webhook/blob/develop/.travis.yml).
386
+ The project is setup with [GitHub Actions](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions) to automate testing. The various workflows and environments can be seen in [.github/workflows/ci.yml](https://github.com/SouthernMade/sm_sms_campaign_webhook/blob/develop/.github/workflows/ci.yml).
387
387
 
388
388
  ### Documentation
389
389
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module SmSmsCampaignWebhook
4
4
  # @return [String] gem version
5
- VERSION = "2.0.1"
5
+ VERSION = "2.1.0"
6
6
  end
@@ -33,16 +33,16 @@ 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.6.6"
36
+ spec.required_ruby_version = ">= 2.7.5"
37
37
 
38
38
  # Runtime dependencies.
39
- spec.add_dependency "rails", [">= 6.0", "< 6.2"]
39
+ spec.add_dependency "rails", [">= 6.0", "< 7.1"]
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", "~> 4.0"
44
+ spec.add_development_dependency "rspec-rails", "~> 5.0"
45
45
  spec.add_development_dependency "simplecov", "~> 0.20"
46
- spec.add_development_dependency "standard"
46
+ spec.add_development_dependency "standard", "~> 1.0"
47
47
  spec.add_development_dependency "yard", "~> 0.9"
48
48
  end
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.0.1
4
+ version: 2.1.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: 2020-12-31 00:00:00.000000000 Z
12
+ date: 2022-01-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: '6.0'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '6.2'
23
+ version: '7.1'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: '6.0'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '6.2'
33
+ version: '7.1'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: bundler
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -65,14 +65,14 @@ dependencies:
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '4.0'
68
+ version: '5.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: '4.0'
75
+ version: '5.0'
76
76
  - !ruby/object:Gem::Dependency
77
77
  name: simplecov
78
78
  requirement: !ruby/object:Gem::Requirement
@@ -91,16 +91,16 @@ dependencies:
91
91
  name: standard
92
92
  requirement: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '0'
96
+ version: '1.0'
97
97
  type: :development
98
98
  prerelease: false
99
99
  version_requirements: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ">="
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '0'
103
+ version: '1.0'
104
104
  - !ruby/object:Gem::Dependency
105
105
  name: yard
106
106
  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.0.1
161
+ documentation_uri: https://www.rubydoc.info/gems/sm_sms_campaign_webhook/2.1.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.6.6
172
+ version: 2.7.5
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.2.3
179
+ rubygems_version: 3.3.4
180
180
  signing_key:
181
181
  specification_version: 4
182
182
  summary: Middleware providing webhook for Southern Made SMS Campaign Engagement.