plate_id 0.0.7 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/uri/plate_id.rb +6 -1
- data/plate_id.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 488d85239ff8cf21a64aa0b26d92979c14ae171df4d6dc2a86b904b75951bbd7
|
4
|
+
data.tar.gz: a558664d19fe9453f47baa02533474bf5a721db453b404e7b297acb1211539b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65d296b931c674c016189c2763a48b998733aa7304c1b5f6f25dfbdcd2af0d126cd956502c6ab5e4904d7d9d28e0a8db3c085550677c3aafa3e3ffedfdcebc23
|
7
|
+
data.tar.gz: 31d0cdf339fb8abf64f2f6c6a56c01169c0a4a948f26452450ee4390ed1d545aa26d6445973eaecef6531cdb36ff9ec543153d65b27aa8f0b090141b8f5a43d1
|
data/.gitignore
CHANGED
data/lib/uri/plate_id.rb
CHANGED
@@ -13,7 +13,11 @@ module URI
|
|
13
13
|
|
14
14
|
MAPPING = {
|
15
15
|
"Site" => { host: "Base", base_class: "Site" },
|
16
|
+
"Ngn::Site" => { host: "Base", base_class: "Site" },
|
17
|
+
"Org::Site" => { host: "Base", base_class: "Site" },
|
16
18
|
"Ngn::Attachment" => { host: "Base", base_class: "Attachment" },
|
19
|
+
"Ngn::AttachmentSetting" => { host: "Base", base_class: "AttachmentSetting" },
|
20
|
+
"Ngn::AttachmentFolder" => { host: "Base", base_class: "AttachmentFolder" },
|
17
21
|
"Ngn::Domain" => { host: "Base", base_class: "Domain" },
|
18
22
|
"Ngn::ClipboardItem" => { host: "Base", base_class: "ClipboardItem" },
|
19
23
|
"Ngn::VersionControl::Actions::Action" => { host: "Base", base_class: "VersionControl" },
|
@@ -33,10 +37,11 @@ module URI
|
|
33
37
|
"Ngn::ContentModel::SectionType" => { host: "ContentModel", base_class: "SectionType" },
|
34
38
|
"Ngn::ContentModel::ElementType" => { host: "ContentModel", base_class: "ElementType" },
|
35
39
|
"Ngn::ContentModel::ObjectTypeKind" => { host: "ContentModel", base_class: "ContentType" },
|
40
|
+
"Ngn::ContentModel::ObjectType" => { host: "ContentModel", base_class: "ObjectType" }, # TODO: legacy, to be replaced with typed kinds
|
36
41
|
"Ngn::ContentModel::TrayType" => { host: "ContentModel", base_class: "TrayType" },
|
37
42
|
"Ngn::ContentModel::AuthenticationType" => { host: "ContentModel", base_class: "AuthenticationType" },
|
38
43
|
|
39
|
-
"Ngn::Theming::
|
44
|
+
"Ngn::Theming::Theme" => { host: "Theming", base_class: "Theme" },
|
40
45
|
"Ngn::Theming::ThemeFile" => { host: "Theming", base_class: "ThemeFile" },
|
41
46
|
"Ngn::Theming::Prerender" => { host: "Theming", base_class: "Prerender" },
|
42
47
|
|
data/plate_id.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plate_id
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kobus Post
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Identify any Plate record or class with URIs. Somewhat based on Rails's
|
14
14
|
GlobalID gem.
|