rails-on-sorbet 0.4.0 → 0.5.0

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: c535a249d20ba0cdc051763834fdb0cba1acd23604a50fe1c184464ad73601a4
4
- data.tar.gz: 2c9dcd2c8be375b2a1525c418ae78836884c84dda8dfbb0b415f86a77a10dec4
3
+ metadata.gz: 3ea28926ab10cc0fcae86ab5b28f3f0edcb837c108b2dce06dc4a0630dcf5b87
4
+ data.tar.gz: 6dd9264a458700cb250c6c75314475ed542f84bc4d9dcfa7dffe040db8939984
5
5
  SHA512:
6
- metadata.gz: d7a2a72bf40838fdb2b08c356c3bdbe62bd52f9a425726e457e50ece570fbad492753482d026b572a30a9a6b1f7a9424c7c453d4a8e8a028c487b98a4b1d920e
7
- data.tar.gz: 2af8a564330d23d2da659885cef8f6a8c1b19a24939975f7266cb49c24c04f65d3c22cc8b623e576b1fd097b9f05b33ca677aa080c3335e825c473974166f6fa
6
+ metadata.gz: a7ce2795b1153542782e7b62764c71af68d7dbbf62fb0eed0b4b626d112d585ef70901138a88c8d6309649d7df5d8e769e5d2c15b4525e1207948c0819638e4b
7
+ data.tar.gz: ccd02ca4092d27b855f657847d89facf82f8a3737bbba890343095a84a4acfbb2d9d4f46796f0f0adeded61e1709a28cf0b8a040eb39082c230f02af29de1aaa
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4.7
data/CHANGELOG.md CHANGED
@@ -12,6 +12,13 @@ Add changes in new features here. Do not change the gem's version in pull/merge
12
12
  ### Changes
13
13
  -
14
14
 
15
+ ## [0.5.0] - 30.12.2025
16
+
17
+ [Diff](https://github.com/espago/rails-on-sorbet/compare/v0.4.0...v0.5.0)
18
+
19
+ ### Changes
20
+ - Add missing methods to `TypedRelation`
21
+
15
22
  ## [0.4.0] - 22.10.2025
16
23
 
17
24
  [Diff](https://github.com/espago/rails-on-sorbet/compare/v0.3.6...v0.4.0)
@@ -3,7 +3,7 @@
3
3
  module Rails
4
4
  module On
5
5
  module Sorbet
6
- VERSION = '0.4.0'
6
+ VERSION = '0.5.0'
7
7
  end
8
8
  end
9
9
  end
@@ -3,14 +3,23 @@
3
3
  #: (ActiveRecord::Relation) -> TypedRelation[untyped]
4
4
  def TypedRelation(val); end
5
5
 
6
+ # @requires_ancestor: Object
6
7
  # @abstract
7
8
  module TypedCommonRelationMethods
8
9
  extend T::Generic
10
+ include Enumerable[Elem]
9
11
 
10
12
  Elem = type_member(:out)
11
13
 
12
14
  # START CommonRelationMethods
13
15
 
16
+ sig { returns(T::Boolean) }
17
+ def blank?; end
18
+
19
+ sig { params(blk: T.proc.params(arg0: Elem).void).returns(T.untyped) }
20
+ sig { returns(T::Enumerator[Elem]) }
21
+ def each(&blk); end
22
+
14
23
  sig { abstract.returns(T::Array[Elem]) }
15
24
  def to_a; end
16
25
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-on-sorbet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateusz Drewniak
@@ -59,6 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".ruby-version"
62
63
  - CHANGELOG.md
63
64
  - LICENSE
64
65
  - README.md
@@ -105,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
106
  - !ruby/object:Gem::Version
106
107
  version: '0'
107
108
  requirements: []
108
- rubygems_version: 3.6.9
109
+ rubygems_version: 3.7.2
109
110
  specification_version: 4
110
111
  summary: A Rails extension that expands support for sorbet
111
112
  test_files: []