optify-config 1.15.0-x86_64-linux → 1.15.2-x86_64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c1144b1d48c53b9787228845a1c2ced3b587b13f98dea3427fd86eecf987bdc
4
- data.tar.gz: a8183a77278c90d4812cd1066e931fe5e2a20e3a6593646bd104bf7d8112a9ce
3
+ metadata.gz: c33615f1b8f9ded7277c8a00d5d0d0010278013a63d62e05e30690bf48fe3793
4
+ data.tar.gz: '0846e099812f328aa6dfccef706074fb784cfb54cf1a0a78711ec1919e59984e'
5
5
  SHA512:
6
- metadata.gz: 84f8f3eddc06778a681107581d69c5f42190a939fbcadaef07204084131e896ab65b4a2f6154866515ed6fb38753bbfda9565b7e8f9ba0cabf78c65acf19b4cd
7
- data.tar.gz: 1e7cbf6eb35c2f36fe09d48ec36f0d9cefe133f6fe1dd52cd624062596157abe52c7814d100337573f7b6d7c70e6db8362be9c3b5053fb21b6d0456a699059ad
6
+ metadata.gz: 78f7f0c0143000effebb958270f7a7f7c3ea874900072d64c234e95f0c5813a128f4c3335e768666758aa2d7fd4b491ac50562398446e753639ceffcfb9ffef9
7
+ data.tar.gz: 2b219b54af93df33899aeb43d6fe7e0d35ce2a45772248cf2a011243d51ec7a603f306d0260df87021d05a5d2773bc61cb8ffcb62fa5d8f22dcc9e6836a7056d
Binary file
Binary file
@@ -11,7 +11,7 @@ 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.
14
+ # The canonical names of features that import this one.
15
15
  sig { returns(T.nilable(T::Array[String])) }
16
16
  attr_reader :dependents
17
17
 
data/rbi/optify.rbi CHANGED
@@ -20,6 +20,14 @@ module Optify
20
20
  sig { params(hash: T::Hash[T.untyped, T.untyped]).returns(T.attached_class) }
21
21
  def self.from_hash(hash); end
22
22
 
23
+ # Convert this object to a Hash recursively.
24
+ # This is mostly the reverse operation of `from_hash`,
25
+ # as keys will be symbols
26
+ # and `from_hash` will convert strings to symbols if that's how the attribute is declared.
27
+ # @return The hash representation of this object.
28
+ sig { returns(T::Hash[Symbol, T.untyped]) }
29
+ def to_h; end
30
+
23
31
  # Compare this object with another object for equality.
24
32
  # @param other The object to compare.
25
33
  # @return [Boolean] true if the objects are equal; otherwise, false.
@@ -37,7 +45,7 @@ module Optify
37
45
  sig { returns(T.nilable(T::Array[String])) }
38
46
  def aliases; end
39
47
 
40
- # The canonical names of features that depend on this one.
48
+ # The canonical names of features that import this one.
41
49
  sig { returns(T.nilable(T::Array[String])) }
42
50
  def dependents; end
43
51
 
data/sig/optify.rbs CHANGED
@@ -16,6 +16,13 @@ class Optify::BaseConfig
16
16
  # @return The new instance.
17
17
  def self.from_hash: (::Hash[untyped, untyped] hash) -> instance
18
18
 
19
+ # Convert this object to a Hash recursively.
20
+ # This is mostly the reverse operation of `from_hash`,
21
+ # as keys will be symbols
22
+ # and `from_hash` will convert strings to symbols if that's how the attribute is declared.
23
+ # @return The hash representation of this object.
24
+ def to_h: () -> ::Hash[Symbol, untyped]
25
+
19
26
  # Compare this object with another object for equality.
20
27
  # @param other The object to compare.
21
28
  # @return [Boolean] true if the objects are equal; otherwise, false.
@@ -31,7 +38,7 @@ end
31
38
  class Optify::OptionsMetadata < BaseConfig
32
39
  def aliases: () -> ::Array[String]?
33
40
 
34
- # The canonical names of features that depend on this one.
41
+ # The canonical names of features that import this one.
35
42
  def dependents: () -> ::Array[String]?
36
43
 
37
44
  def details: () -> untyped
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.15.0
4
+ version: 1.15.2
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Justin D. Harris
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-08-17 00:00:00.000000000 Z
11
+ date: 2025-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sorbet-runtime
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.5.12167
19
+ version: 0.6.12477
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.5.12167
26
+ version: 0.6.12477
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake-compiler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -58,28 +58,28 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.5.12167
61
+ version: 0.6.12477
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.5.12167
68
+ version: 0.6.12477
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: tapioca
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.17.2
75
+ version: 0.17.7
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.17.2
82
+ version: 0.17.7
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: test-unit
85
85
  requirement: !ruby/object:Gem::Requirement