boba 0.0.11 → 0.0.12

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: 0a299592dce0ee68ddd4ad96f0c6d35a665739102bfa02c8e5d3f3cf26ed0531
4
- data.tar.gz: 71d4ebe6c98f11586fef81e8d7b8892adce83bb2fbeafa516369947cbcd0dd9e
3
+ metadata.gz: 0cbef69a3715be625d4af0b5bf408b3822cc09fef287e8bcd1acd1a6c6377280
4
+ data.tar.gz: f47e14bbf2f23c02f45190053fdcbbfd29aee7de39e3d698919bbb97db96dd8a
5
5
  SHA512:
6
- metadata.gz: b34ab72d0801c768da549880ad247e978538e29197c51ff09b8d0e3c6d18b23e4433a808948613b98f3621ed0f486cd5fc7f44dad2f0e4587aec1070bf14cb0a
7
- data.tar.gz: 1fca80c8c8a75f2763e4682b4b3e5543af3700abe8b2bd3c0fcb097c749d9292b67375c4121fc0ec43c49502678e0c8ee5fd3da59f02ce930a39ec5a1971f302
6
+ metadata.gz: feb7409b2a58e5d48e8e2b5fb6efa47adf622f4a74b5d8a0dd52c976118b03142c983949e0996d1535fe3d0da565f2785978c0de5d5524ded192394be15148aa
7
+ data.tar.gz: 1f8edb8084ab4115c01c522b0ed0e82d0dd1f3e6720554995df3abbe0842f22865bd08cec7315850482dda117e382cb6954adc976925ec3a1c83de3d03b3c003
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Boba
2
2
 
3
- > :warning: This gem is in pre-release and is not ready for use.
3
+ > :warning: This software is currently under active development. It should not be considered stable until 1.0.0.
4
4
 
5
5
  Boba is a collection of compilers for Sorbet & Tapioca.
6
6
 
@@ -13,6 +13,8 @@ class Boba::RelationsRailtie < Rails::Railtie
13
13
  super(child)
14
14
 
15
15
  child.const_set("PrivateRelation", Object)
16
+ child.const_set("PrivateAssociationRelation", Object)
17
+ child.const_set("PrivateCollectionProxy", Object)
16
18
  end
17
19
  end
18
20
 
data/lib/boba/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Boba
5
- VERSION = "0.0.11"
5
+ VERSION = "0.0.12"
6
6
  end
@@ -111,7 +111,7 @@ module Tapioca
111
111
  # end
112
112
  # end
113
113
  # ~~~
114
- class StateMachines < Compiler
114
+ class StateMachinesExtended < Compiler
115
115
  extend T::Sig
116
116
 
117
117
  ACTIVE_RECORD_RELATION_MODULE_NAMES = [
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boba
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Angellist
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-28 00:00:00.000000000 Z
11
+ date: 2024-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sorbet-static-and-runtime
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: tapioca
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - "<="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.16.4
33
+ version: 0.16.5
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - "<="
39
39
  - !ruby/object:Gem::Version
40
- version: 0.16.4
40
+ version: 0.16.5
41
41
  description:
42
42
  email:
43
43
  - alex.stathis@angellist.com
@@ -57,15 +57,15 @@ files:
57
57
  - lib/tapioca/dsl/compilers/attr_json.rb
58
58
  - lib/tapioca/dsl/compilers/money_rails.rb
59
59
  - lib/tapioca/dsl/compilers/paperclip.rb
60
- - lib/tapioca/dsl/compilers/state_machines.rb
60
+ - lib/tapioca/dsl/compilers/state_machines_extended.rb
61
61
  homepage: https://github.com/angellist/boba
62
62
  licenses:
63
63
  - MIT
64
64
  metadata:
65
65
  bug_tracker_uri: https://github.com/angellist/boba/issues
66
- changelog_uri: https://github.com/angellist/boba/blob/0.0.11/History.md
66
+ changelog_uri: https://github.com/angellist/boba/blob/0.0.12/History.md
67
67
  homepage_uri: https://github.com/angellist/boba
68
- source_code_uri: https://github.com/angellist/boba/tree/0.0.11
68
+ source_code_uri: https://github.com/angellist/boba/tree/0.0.12
69
69
  rubygems_mfa_required: 'true'
70
70
  post_install_message:
71
71
  rdoc_options: []