optify-config 1.14.0-arm64-darwin → 1.15.0-arm64-darwin

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: 6c60b29762792287192f1b37f5acd4f4f08ef6fa4eb7790f1c10cefa6315717e
4
- data.tar.gz: 3c72c520fd0a731c2361e69af99b3b99e4b2e707c85cf526b1059fd7c6db2bca
3
+ metadata.gz: 277e6228acda050b293326141aad027a8b34575cd994b3c605df250c7ae3c42c
4
+ data.tar.gz: 9f9dca92c444a36eed41a46578789c6af12be46434a982346fc62b186c5de9d4
5
5
  SHA512:
6
- metadata.gz: 7814fee45f9e898d16bee2c7d77f8d5353ad13bd17a01e19c7114ec1d6f62c4c2c5a135d25b46d75a382051e7da33692b9e5a31ab6eeeecce7c560f2bd8cf042
7
- data.tar.gz: 5023643f6dc17d6c247412c42c5d3f9227010a4e840b834a8416377168d528405ae3ab47fac3023ede16dba32497463945846da091901a1c4754051c45b429bc
6
+ metadata.gz: 723bfeb36c1890a911449764d1d98b5b7ffe78e9b6a2d046aa46e4dc232991315d3f8938209da340b70b2590d5b06fecb5e8a31bdc1b4d7b039caeabb7405149
7
+ data.tar.gz: b742f6a729905945bf5d4afe05c32f51eb222eb11a0f584fbee50f09a272e1e9a5dbec779e39a7dd5b636b70143da15642f41ac40305a5fdd5c7f12c72d2a000
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
 
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
 
@@ -101,11 +105,25 @@ module Optify
101
105
  sig { params(directory: String).returns(T.attached_class) }
102
106
  def build(directory); end
103
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
+
104
115
  # Build from multiple directories.
105
116
  # @param directories The directories to build the provider from.
106
117
  # @return The instance.
107
118
  sig { params(directories: T::Array[String]).returns(T.attached_class) }
108
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
109
127
  end
110
128
 
111
129
  # @return All of the aliases.
data/sig/optify.rbs CHANGED
@@ -31,6 +31,9 @@ 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
@@ -78,11 +81,23 @@ class Optify::OptionsRegistry
78
81
  # @return The instance.
79
82
  def build: (String directory) -> instance
80
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
+
81
90
  # Build from multiple directories.
82
91
  # @param directories The directories to build the provider from.
83
92
  # @return The instance.
84
93
  def build_from_directories: (::Array[String] directories) -> instance
85
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
+
86
101
  # @return All of the aliases.
87
102
  def aliases: () -> ::Array[String]
88
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.14.0
4
+ version: 1.15.0
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Justin D. Harris
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-08-06 00:00:00.000000000 Z
11
+ date: 2025-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sorbet-runtime