sweet_notifications 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +3 -4
- data/Appraisals +4 -0
- data/gemfiles/rails_6.1.gemfile +7 -0
- data/lib/sweet_notifications/version.rb +1 -1
- data/sweet_notifications.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6c084ecf379a17039cbda23138ef831ec067ef33da0c653ecd0be81cbd39e28
|
4
|
+
data.tar.gz: 70a60a8ed86fc436352e160415563fad1f839893006655649296380bee09840b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 864cd928cdc2a05ecbb355897e93b43b9bbf375430c04f9d9758a7f3fb761a3e990a8f7fd0dd1aa57354007d447224d8e44385b6d5beac01f0c2b296c00c0604
|
7
|
+
data.tar.gz: 52cfd3dc19bf1b96c79ff0701289fe30056eabb605192dfe12d9eec938605f1b3953d27929e56b117abf5e8d438c69b45c03a089a682dc9aad978dc52151449d
|
data/.github/workflows/ci.yml
CHANGED
@@ -13,15 +13,14 @@ jobs:
|
|
13
13
|
gemfile:
|
14
14
|
- gemfiles/rails_5.2.gemfile
|
15
15
|
- gemfiles/rails_6.0.gemfile
|
16
|
+
- gemfiles/rails_6.1.gemfile
|
16
17
|
- Gemfile
|
17
18
|
ruby:
|
18
19
|
- 2.5
|
19
20
|
- 2.6
|
20
21
|
- 2.7
|
22
|
+
- 3.0
|
21
23
|
- jruby
|
22
|
-
include:
|
23
|
-
- ruby: 2.7
|
24
|
-
gemfile: gemfiles/rails_head.gemfile
|
25
24
|
env:
|
26
25
|
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
27
26
|
steps:
|
@@ -38,6 +37,6 @@ jobs:
|
|
38
37
|
- uses: actions/checkout@v2
|
39
38
|
- uses: ruby/setup-ruby@v1
|
40
39
|
with:
|
41
|
-
ruby-version:
|
40
|
+
ruby-version: 3.0
|
42
41
|
bundler-cache: true
|
43
42
|
- run: bundle exec rubocop --format github
|
data/Appraisals
CHANGED
data/sweet_notifications.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
18
|
spec.require_paths = ["lib"]
|
19
19
|
|
20
|
-
spec.required_ruby_version = '
|
20
|
+
spec.required_ruby_version = '>= 2.5'
|
21
21
|
|
22
22
|
spec.add_runtime_dependency "activesupport", ">= 5.2"
|
23
23
|
spec.add_runtime_dependency "railties", ">= 5.2"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sweet_notifications
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ville Lautanala
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -198,6 +198,7 @@ files:
|
|
198
198
|
- Rakefile
|
199
199
|
- gemfiles/rails_5.2.gemfile
|
200
200
|
- gemfiles/rails_6.0.gemfile
|
201
|
+
- gemfiles/rails_6.1.gemfile
|
201
202
|
- gemfiles/rails_head.gemfile
|
202
203
|
- lib/sweet_notifications.rb
|
203
204
|
- lib/sweet_notifications/controller_runtime.rb
|
@@ -220,7 +221,7 @@ require_paths:
|
|
220
221
|
- lib
|
221
222
|
required_ruby_version: !ruby/object:Gem::Requirement
|
222
223
|
requirements:
|
223
|
-
- - "
|
224
|
+
- - ">="
|
224
225
|
- !ruby/object:Gem::Version
|
225
226
|
version: '2.5'
|
226
227
|
required_rubygems_version: !ruby/object:Gem::Requirement
|