optify-config 1.13.0-aarch64-linux → 1.15.0-aarch64-linux
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/lib/optify_ruby/3.2/optify_ruby.so +0 -0
- data/lib/optify_ruby/3.4/optify_ruby.so +0 -0
- data/lib/optify_ruby/options_metadata.rb +7 -0
- data/rbi/optify.rbi +21 -0
- data/sig/optify.rbs +17 -0
- 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: bb3e4946a07a438cea8328768fe7b1a7113247c5a337e6d5f8ba115e0cd9fd9a
|
4
|
+
data.tar.gz: 390fe306aaae2a870db27c56c4656f0a996262214da26d936a1b40b975abd6ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9500c93a1145fc315c0776d9a6c41fdcede3524001ad627d8e3bce92e9eb878b1251591df126e19e3a8f5a8da174a6172d2d43ab30b69ce13c764c0c289781f5
|
7
|
+
data.tar.gz: 282a058ede2271a7add196cb99fd2bd2384e5b4de30ab0320a1f06aa78e3ee1d0d9b535a8f89693d4f2806f1219b56eab0c299bacd11d5e45cb26beded238a1d
|
Binary file
|
Binary file
|
@@ -11,6 +11,10 @@ module Optify
|
|
11
11
|
sig { returns(T.nilable(T::Array[String])) }
|
12
12
|
attr_reader :aliases
|
13
13
|
|
14
|
+
# The canonical names of features that depend on this one.
|
15
|
+
sig { returns(T.nilable(T::Array[String])) }
|
16
|
+
attr_reader :dependents
|
17
|
+
|
14
18
|
sig { returns(T.untyped) }
|
15
19
|
attr_reader :details
|
16
20
|
|
@@ -19,5 +23,8 @@ module Optify
|
|
19
23
|
|
20
24
|
sig { returns(T.nilable(String)) }
|
21
25
|
attr_reader :owners
|
26
|
+
|
27
|
+
sig { returns(T.nilable(String)) }
|
28
|
+
attr_reader :path
|
22
29
|
end
|
23
30
|
end
|
data/rbi/optify.rbi
CHANGED
@@ -37,6 +37,10 @@ module Optify
|
|
37
37
|
sig { returns(T.nilable(T::Array[String])) }
|
38
38
|
def aliases; end
|
39
39
|
|
40
|
+
# The canonical names of features that depend on this one.
|
41
|
+
sig { returns(T.nilable(T::Array[String])) }
|
42
|
+
def dependents; end
|
43
|
+
|
40
44
|
sig { returns(T.untyped) }
|
41
45
|
def details; end
|
42
46
|
|
@@ -45,6 +49,9 @@ module Optify
|
|
45
49
|
|
46
50
|
sig { returns(T.nilable(String)) }
|
47
51
|
def owners; end
|
52
|
+
|
53
|
+
sig { returns(T.nilable(String)) }
|
54
|
+
def path; end
|
48
55
|
end
|
49
56
|
|
50
57
|
# Preferences when getting options.
|
@@ -98,11 +105,25 @@ module Optify
|
|
98
105
|
sig { params(directory: String).returns(T.attached_class) }
|
99
106
|
def build(directory); end
|
100
107
|
|
108
|
+
# Build using just one directory and enforce a schema for all feature files.
|
109
|
+
# @param directory The directory to build the provider from.
|
110
|
+
# @param schema_path The path to the file of the schema to enforce.
|
111
|
+
# @return The instance.
|
112
|
+
sig { params(directory: String, schema_path: String).returns(T.attached_class) }
|
113
|
+
def build_with_schema(directory, schema_path); end
|
114
|
+
|
101
115
|
# Build from multiple directories.
|
102
116
|
# @param directories The directories to build the provider from.
|
103
117
|
# @return The instance.
|
104
118
|
sig { params(directories: T::Array[String]).returns(T.attached_class) }
|
105
119
|
def build_from_directories(directories); end
|
120
|
+
|
121
|
+
# Build from multiple directories and enforce a schema for all feature files.
|
122
|
+
# @param directories The directories to build the provider from.
|
123
|
+
# @param schema The schema to enforce.
|
124
|
+
# @return The instance.
|
125
|
+
sig { params(directories: T::Array[String], schema_path: String).returns(T.attached_class) }
|
126
|
+
def build_from_directories_with_schema(directories, schema_path); end
|
106
127
|
end
|
107
128
|
|
108
129
|
# @return All of the aliases.
|
data/sig/optify.rbs
CHANGED
@@ -31,11 +31,16 @@ end
|
|
31
31
|
class Optify::OptionsMetadata < BaseConfig
|
32
32
|
def aliases: () -> ::Array[String]?
|
33
33
|
|
34
|
+
# The canonical names of features that depend on this one.
|
35
|
+
def dependents: () -> ::Array[String]?
|
36
|
+
|
34
37
|
def details: () -> untyped
|
35
38
|
|
36
39
|
def name: () -> String
|
37
40
|
|
38
41
|
def owners: () -> String?
|
42
|
+
|
43
|
+
def path: () -> String?
|
39
44
|
end
|
40
45
|
|
41
46
|
# Preferences when getting options.
|
@@ -76,11 +81,23 @@ class Optify::OptionsRegistry
|
|
76
81
|
# @return The instance.
|
77
82
|
def build: (String directory) -> instance
|
78
83
|
|
84
|
+
# Build using just one directory and enforce a schema for all feature files.
|
85
|
+
# @param directory The directory to build the provider from.
|
86
|
+
# @param schema_path The path to the file of the schema to enforce.
|
87
|
+
# @return The instance.
|
88
|
+
def build_with_schema: (String directory, String schema_path) -> instance
|
89
|
+
|
79
90
|
# Build from multiple directories.
|
80
91
|
# @param directories The directories to build the provider from.
|
81
92
|
# @return The instance.
|
82
93
|
def build_from_directories: (::Array[String] directories) -> instance
|
83
94
|
|
95
|
+
# Build from multiple directories and enforce a schema for all feature files.
|
96
|
+
# @param directories The directories to build the provider from.
|
97
|
+
# @param schema The schema to enforce.
|
98
|
+
# @return The instance.
|
99
|
+
def build_from_directories_with_schema: (::Array[String] directories, String schema_path) -> instance
|
100
|
+
|
84
101
|
# @return All of the aliases.
|
85
102
|
def aliases: () -> ::Array[String]
|
86
103
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: optify-config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.0
|
5
5
|
platform: aarch64-linux
|
6
6
|
authors:
|
7
7
|
- Justin D. Harris
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sorbet-runtime
|