lato_spaces 3.1.8 → 3.1.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2a2728c7ffc4de0d031f290f0b3e0052d0f52252877412244afc90948047e24
4
- data.tar.gz: aebb7d8d111c3b3c70dfaaab05e1bce54ef7f06618b959b5a1c38cea76820efd
3
+ metadata.gz: 9f91b368922c8adec1acf6e9d478cab0363663efb8897d09459821df0bc0c0b0
4
+ data.tar.gz: bae1a510522ed6c8cbefb23b5d272ca637682fcb2da4923c8416bb15ca3710a5
5
5
  SHA512:
6
- metadata.gz: 8e3ceaab436dc2dec01d13cb9db22ab5f320d4702d2e8d1f13262df3ad8ffdeea4f0982f9701cd8819bd8022a7da0f011a31b9efee934965d632cab71f36009d
7
- data.tar.gz: 6b692ab38bc5163fb5981bbe3228947a4a13a319f2bfee216c0c78761b32bfa7ab51f72ae09c8cf9c5ee3193dfbdbfc13a999f0670844b460c2ac6cba6ab2dfc
6
+ metadata.gz: be1ced52743e495fbe91de06924229f561bcdfbd96d962ec6ce927970b878cddf38121c69cb4173b919401dc4b0aac17878131fb581d7269f991286851a3af21
7
+ data.tar.gz: 14d8b9f0fdb8d227ff343994405b78a653b673cb9417adea229a6f3d9e21c1b07e85c71f9f32720fb47c72df9c46ab2539448010eeca7b9e23b8dd58fb2ce1bd
@@ -5,7 +5,7 @@ module LatoSpaces::Associable
5
5
  # Relations
6
6
  ##
7
7
 
8
- has_many :lato_spaces_associations, class_name: 'LatoSpaces::Association', as: :item, dependent: :nullify
8
+ has_many :lato_spaces_associations, class_name: 'LatoSpaces::Association', as: :item, dependent: :delete_all # HACK: delete_all instead of destroy to avoid infinite loop caused by AssociableRequired concern
9
9
  has_many :lato_spaces_groups, through: :lato_spaces_associations, class_name: 'LatoSpaces::Group'
10
10
 
11
11
  # Scopes
@@ -14,13 +14,6 @@ module LatoSpaces::Associable
14
14
  scope :for_lato_spaces_group, -> (group_id) { joins(:lato_spaces_groups).where(lato_spaces_groups: { id: group_id }) }
15
15
  scope :with_lato_spaces_groups, -> { joins(:lato_spaces_groups) }
16
16
  scope :without_lato_spaces_groups, -> { left_outer_joins(:lato_spaces_groups).where(lato_spaces_groups: { id: nil }) }
17
-
18
- # Hooks
19
- ##
20
-
21
- after_destroy do
22
- lato_spaces_associations.map(&:delete) # HACK: delete instead of destroy to avoid infinite loop caused by AssociableRequired concern
23
- end
24
17
  end
25
18
 
26
19
  # Helpers
@@ -1,3 +1,3 @@
1
1
  module LatoSpaces
2
- VERSION = "3.1.8"
2
+ VERSION = "3.1.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lato_spaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.8
4
+ version: 3.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregorio Galante