foobara 0.0.5 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2864913cd9394c107229c991b761ca242a2b86dcdede5e2c18dc506c1c4694c0
|
4
|
+
data.tar.gz: 185e017e5206d707e590647b0f024742b874ef41ebc4569c43867420c37c9df9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76a106a02c5cce555b55fa415ba66d48bb8d55ca276f81f079ed4efd63c37bdc03157f147322475cc92a085030c1cc43129319c933a6a2c8a3c77336058e78bd
|
7
|
+
data.tar.gz: 959c99953c84ed9f1113fca6fcd8c77336d01a594401008c2aa825455c8679ac39625162a1523b4b3aa4fba74e0ff738c53838a4ef7c4bb226ace70c9a5630b8
|
data/CHANGELOG.md
CHANGED
@@ -9,10 +9,23 @@ module Foobara
|
|
9
9
|
@builtin_types ||= Set.new
|
10
10
|
end
|
11
11
|
|
12
|
+
def add_builtin_type(type)
|
13
|
+
@builtin_references = nil
|
14
|
+
builtin_types << type
|
15
|
+
end
|
16
|
+
|
17
|
+
def builtin_references
|
18
|
+
@builtin_references ||= builtin_types.to_set(&:foobara_manifest_reference)
|
19
|
+
end
|
20
|
+
|
12
21
|
def builtin?(type)
|
13
22
|
builtin_types.include?(type)
|
14
23
|
end
|
15
24
|
|
25
|
+
def builtin_reference?(reference)
|
26
|
+
builtin_references.include?(reference)
|
27
|
+
end
|
28
|
+
|
16
29
|
def [](symbol)
|
17
30
|
builtin_types.find do |type|
|
18
31
|
type.type_symbol == symbol
|