card-mod-api_key 0.14.2 → 0.15.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/assets/style/api_key_style.scss +20 -0
- data/data/real.yml +8 -0
- metadata +10 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ae4a853441d86bb2bd57cf43da775ae7b4d7593f683635224b11529733e90f2
|
|
4
|
+
data.tar.gz: 13e933d0835dd9c0a5630b65b3a6462d5c686efed4f6ce76476c5c7d40688d88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d83a7af74675edbe01286519fe794b0b6b082a92262a6ccb99a75836866011de75c28aef59566ecfb014239cfc43e56a3c42eb76394b5b72bf86751aecb264d
|
|
7
|
+
data.tar.gz: 14a13ba601aa90e24cc9c7918a37528b7762f542911dbbb40b7ae40d04aa16f44c8c1a25f0660b1bcb510326ca31a8202109296be61e6f10bb3ae7f421beb064
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.api-key-core {
|
|
2
|
+
display: flex;
|
|
3
|
+
width: 100%;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
padding: 1em;
|
|
6
|
+
.current-api-key {
|
|
7
|
+
width: 50%;
|
|
8
|
+
input {
|
|
9
|
+
width: 100%;
|
|
10
|
+
font-family: monospace;
|
|
11
|
+
font-size: 1.3rem;
|
|
12
|
+
border: 1px solid transparent;
|
|
13
|
+
box-shadow: none;
|
|
14
|
+
background-color: lightyellow;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.current-api-key:hover input {
|
|
18
|
+
border: 1px solid #DDD;
|
|
19
|
+
}
|
|
20
|
+
}
|
data/data/real.yml
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: card-mod-api_key
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.15.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ethan McCutchen
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: card
|
|
@@ -18,28 +18,28 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 1.
|
|
21
|
+
version: 1.105.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 1.
|
|
28
|
+
version: 1.105.0
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: card-mod-account
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.
|
|
35
|
+
version: 0.15.0
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - '='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.
|
|
42
|
+
version: 0.15.0
|
|
43
43
|
description: ''
|
|
44
44
|
email:
|
|
45
45
|
- info@decko.org
|
|
@@ -48,6 +48,8 @@ extensions: []
|
|
|
48
48
|
extra_rdoc_files: []
|
|
49
49
|
files:
|
|
50
50
|
- README.md
|
|
51
|
+
- assets/style/api_key_style.scss
|
|
52
|
+
- data/real.yml
|
|
51
53
|
- init/late/api_key.rb
|
|
52
54
|
- lib/card/auth/api_key.rb
|
|
53
55
|
- lib/card_controller/api_key.rb
|
|
@@ -66,6 +68,7 @@ metadata:
|
|
|
66
68
|
wiki_uri: https://decko.org
|
|
67
69
|
documentation_url: http://docs.decko.org/
|
|
68
70
|
card-mod: api_key
|
|
71
|
+
card-mod-group: gem-defaults
|
|
69
72
|
post_install_message:
|
|
70
73
|
rdoc_options: []
|
|
71
74
|
require_paths:
|
|
@@ -81,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
84
|
- !ruby/object:Gem::Version
|
|
82
85
|
version: '0'
|
|
83
86
|
requirements: []
|
|
84
|
-
rubygems_version: 3.
|
|
87
|
+
rubygems_version: 3.3.11
|
|
85
88
|
signing_key:
|
|
86
89
|
specification_version: 4
|
|
87
90
|
summary: API Keys and JWT Tokens for Decko
|