ruby_auth_metamask 0.2.1 → 0.2.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e2cc3b6a68a74762666a04252d3d5a23d281e801d80c223a177b6a938cd11aa
|
4
|
+
data.tar.gz: e64cde1c81ab86992ecc32b8d036df869f803c8326d8998b4f7498e128a99d3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d100ac935ab0e6d1cfbe8b3bd5f18492976e2ec6eb5b3c35dbf79a4be92bbb0de2a32551942826debb7f9cdd18955c16426f93d2dea3ef3f27d28a8d791f00ff
|
7
|
+
data.tar.gz: debb6362a788d145225c6df49ba5c58003c0b68fdced97b963b604604ceb9442f8d69464f0cb9200338e1f1f27a047ea3948457de660543baa2f3992438dec37
|
@@ -44,11 +44,11 @@ module RubyAuthMetamask
|
|
44
44
|
end
|
45
45
|
|
46
46
|
valid = ECDSA.valid_signature?(public_key, hash, my_signature.sig_obj) rescue false
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
47
|
+
redirect_to main_app.root_path, notice: 'User authentication failed' unless valid
|
48
|
+
|
49
|
+
user = User.find_by_address(address) || User.create(address: address)
|
50
|
+
session[:user_id] = user.id
|
51
|
+
redirect_to main_app.root_path, notice: 'User authentication succeeded' unless valid
|
52
52
|
end
|
53
53
|
|
54
54
|
private
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_auth_metamask
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ethan Zhang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|