chatwork_webhook_verify 0.1.1 → 1.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 +4 -4
- data/lib/chatwork_webhook_verify/version.rb +1 -1
- data/spec/dummy/config/environments/test.rb +9 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2f866beee615361eeecff49f6718f9056c0030844f356395d7521764e57b996
|
|
4
|
+
data.tar.gz: a910f1be8342b29260d3afe972e9b4b74cfd302728bb4575eeaaa99d08af825b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b07ee5661bed91442ba32e2fadcff98e46f513f70e989b541a627e4e0ff088562879c3585dd3589499e4c3a7c6168486f41d2245e57f27f7be7b29337a076e73
|
|
7
|
+
data.tar.gz: db4d71e1cfed8ac5ac96b6998e8a215790560d55e7fa4d911af719ff91b7b996430a62667911a36c2935e322bf44180572af1ac348a29a150a19cb35ebdb5e21
|
|
@@ -23,7 +23,11 @@ Rails.application.configure do
|
|
|
23
23
|
config.action_controller.perform_caching = false
|
|
24
24
|
|
|
25
25
|
# Raise exceptions instead of rendering exception templates.
|
|
26
|
-
|
|
26
|
+
if ActiveSupport.version >= Gem::Version.new("7.1.0")
|
|
27
|
+
config.action_dispatch.show_exceptions = :none
|
|
28
|
+
else
|
|
29
|
+
config.action_dispatch.show_exceptions = false
|
|
30
|
+
end
|
|
27
31
|
|
|
28
32
|
# Disable request forgery protection in test environment.
|
|
29
33
|
config.action_controller.allow_forgery_protection = false
|
|
@@ -33,4 +37,8 @@ Rails.application.configure do
|
|
|
33
37
|
|
|
34
38
|
# Raises error for missing translations
|
|
35
39
|
# config.action_view.raise_on_missing_translations = true
|
|
40
|
+
|
|
41
|
+
if ActiveSupport.version >= Gem::Version.new("7.1.0")
|
|
42
|
+
config.active_support.cache_format_version = 7.0
|
|
43
|
+
end
|
|
36
44
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chatwork_webhook_verify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-03-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionpack
|
|
@@ -25,7 +25,7 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
28
|
+
name: coveralls_reborn
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
@@ -179,6 +179,7 @@ metadata:
|
|
|
179
179
|
homepage_uri: https://github.com/sue445/chatwork_webhook_verify
|
|
180
180
|
source_code_uri: https://github.com/sue445/chatwork_webhook_verify
|
|
181
181
|
changelog_uri: https://github.com/sue445/chatwork_webhook_verify/blob/master/CHANGELOG.md
|
|
182
|
+
documentation_uri: https://sue445.github.io/chatwork_webhook_verify/
|
|
182
183
|
rubygems_mfa_required: 'true'
|
|
183
184
|
post_install_message:
|
|
184
185
|
rdoc_options: []
|
|
@@ -188,14 +189,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
188
189
|
requirements:
|
|
189
190
|
- - ">="
|
|
190
191
|
- !ruby/object:Gem::Version
|
|
191
|
-
version: '
|
|
192
|
+
version: '2.4'
|
|
192
193
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
194
|
requirements:
|
|
194
195
|
- - ">="
|
|
195
196
|
- !ruby/object:Gem::Version
|
|
196
197
|
version: '0'
|
|
197
198
|
requirements: []
|
|
198
|
-
rubygems_version: 3.
|
|
199
|
+
rubygems_version: 3.5.3
|
|
199
200
|
signing_key:
|
|
200
201
|
specification_version: 4
|
|
201
202
|
summary: Verify ChatWork webhook signature
|