recaptcha 5.10.0 → 5.10.1
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/CHANGELOG.md +3 -0
- data/README.md +2 -0
- data/lib/recaptcha/configuration.rb +1 -1
- data/lib/recaptcha/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c43aec95c9b3af962cc3d9a46c70f85dc0fa3f76c29149cc6f67614aa4d1189
|
|
4
|
+
data.tar.gz: 5198c7347e482fb4bc0b6263742d719458764db9921b7b374f238e44297eaba7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca84949e30a26d5409192dfdda7919902389b521779edec2d9b1ff70a79ede29cfe77caf015ce418eb61e397fed73140e581c5fb12b2cdea7a4ebddd457ec917
|
|
7
|
+
data.tar.gz: a9b982cda895842bc2b1096af656805b23d9a76cf480c590e14b1b9cf3a2ef54dd9483b580d6d9cc90060ffe437444c404bec418b1be269bc4c83fcd1090aafa
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -50,6 +50,8 @@ Note: Enter `localhost` or `127.0.0.1` as the domain if using in development wit
|
|
|
50
50
|
|
|
51
51
|
## Rails Installation
|
|
52
52
|
|
|
53
|
+
**If you are having issues with Rails 7, Turbo, and Stimulus, make sure to check [this Wiki page](https://github.com/ambethia/recaptcha/wiki/Recaptcha-with-Turbo-and-Stimulus)!**
|
|
54
|
+
|
|
53
55
|
```ruby
|
|
54
56
|
gem "recaptcha"
|
|
55
57
|
```
|
|
@@ -34,7 +34,7 @@ module Recaptcha
|
|
|
34
34
|
'free_server_url' => 'https://www.recaptcha.net/recaptcha/api.js',
|
|
35
35
|
'enterprise_server_url' => 'https://www.recaptcha.net/recaptcha/enterprise.js',
|
|
36
36
|
'free_verify_url' => 'https://www.recaptcha.net/recaptcha/api/siteverify',
|
|
37
|
-
'enterprise_verify_url' => 'https://recaptchaenterprise.googleapis.com/
|
|
37
|
+
'enterprise_verify_url' => 'https://recaptchaenterprise.googleapis.com/v1/projects'
|
|
38
38
|
}.freeze
|
|
39
39
|
|
|
40
40
|
attr_accessor :default_env, :skip_verify_env, :proxy, :secret_key, :site_key, :handle_timeouts_gracefully,
|
data/lib/recaptcha/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: recaptcha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.10.
|
|
4
|
+
version: 5.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason L Perry
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -161,7 +161,7 @@ licenses:
|
|
|
161
161
|
- MIT
|
|
162
162
|
metadata:
|
|
163
163
|
source_code_uri: https://github.com/ambethia/recaptcha
|
|
164
|
-
post_install_message:
|
|
164
|
+
post_install_message:
|
|
165
165
|
rdoc_options: []
|
|
166
166
|
require_paths:
|
|
167
167
|
- lib
|
|
@@ -176,8 +176,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
176
176
|
- !ruby/object:Gem::Version
|
|
177
177
|
version: '0'
|
|
178
178
|
requirements: []
|
|
179
|
-
rubygems_version: 3.
|
|
180
|
-
signing_key:
|
|
179
|
+
rubygems_version: 3.3.3
|
|
180
|
+
signing_key:
|
|
181
181
|
specification_version: 4
|
|
182
182
|
summary: Helpers for the reCAPTCHA API
|
|
183
183
|
test_files: []
|