active_shrine 0.3.4 → 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: 005c13b67e5b89937f02958dbfb9cb5746aed4b94ff34faf96f028acce259515
4
- data.tar.gz: cab0ce9f41ac2706093fc2e00a6d95b6465fc01203d699b5ae33dad1c0ccafd5
3
+ metadata.gz: 197975739ca00f2daa4c862413a372ee52ce634c308b6f5784d2b588d4f4e498
4
+ data.tar.gz: 5d6119a5f5d32d54a79adff404fce302c2aa170b0b62edb09486b6d510732185
5
5
  SHA512:
6
- metadata.gz: e2f730760fbfa6e0f685ea41153d9b48621102e4ddbe9ec24f697e898edfefbf172c385bd65561a871163685864e0ecd2c9893fbf444e7d781daf15cf2f725da
7
- data.tar.gz: ab387674b136d533f0e3db7aa3d9ac396636c5694e6ab37bd4f6e59dd1e73cca4e42774436840b51c0b5be3cfa4cd9af03cb5385e2619998a9616d1216f59951
6
+ metadata.gz: cce39085bbe3593da28a9d845b9319343efead530dfd8177d62a4c3f9891cbdb771900772e7f4e561f31f5fe25def92eae07c237be3f6b547084093eecc68a3e
7
+ data.tar.gz: 66ecf1b6c13c4f0420a3e1ae45a554620a73c3f67ca96c7bca2c0dd0e72afdcad103596f66cac72bd974291a9e7008a0465e175a560299517b3ce1f83a2c28d6
@@ -23,6 +23,14 @@ module ActiveShrine
23
23
  end
24
24
 
25
25
  def save
26
+ unless attachment.valid?
27
+ attachment.errors.each do |error|
28
+ record.errors.add(name, error.message)
29
+ end
30
+
31
+ raise ActiveRecord::RecordInvalid.new(record)
32
+ end
33
+
26
34
  record.public_send(:"#{name}_attachment=", attachment)
27
35
  end
28
36
 
@@ -140,9 +140,6 @@ module ActiveShrine
140
140
 
141
141
  after_save do
142
142
  shrine_attachment_changes[name.to_s]&.save
143
- rescue => e
144
- errors.add(name, :invalid, message: "failed to save. Please make sure it is a valid file.")
145
- raise ActiveRecord::RecordInvalid.new(self)
146
143
  end
147
144
 
148
145
  after_commit(on: %i[create update]) { shrine_attachment_changes.delete(name.to_s) }
@@ -240,9 +237,6 @@ module ActiveShrine
240
237
 
241
238
  after_save do
242
239
  shrine_attachment_changes[name.to_s]&.save
243
- rescue => e
244
- errors.add(name, :invalid, message: "failed to save. Please make sure it is a valid file.")
245
- raise ActiveRecord::RecordInvalid.new(self)
246
240
  end
247
241
 
248
242
  after_commit(on: %i[create update]) { shrine_attachment_changes.delete(name.to_s) }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveShrine
4
- VERSION = "0.3.4"
4
+ VERSION = "0.5.0"
5
5
  end
@@ -2,8 +2,11 @@
2
2
 
3
3
  class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
4
4
  def change
5
- create_table :active_shrine_attachments do |t|
6
- t.belongs_to :record, polymorphic: true, null: true
5
+ # Use Active Record's configured type for primary and foreign keys
6
+ primary_key_type, foreign_key_type = primary_and_foreign_key_types
7
+
8
+ create_table :active_shrine_attachments, id: primary_key_type do |t|
9
+ t.belongs_to :record, polymorphic: true, null: true, type: foreign_key_type
7
10
  t.string :name, null: false
8
11
  t.string :type, null: false, default: "ActiveShrine::Attachment"
9
12
  if ActiveRecord::Base.connection.adapter_name.downcase.include?("postgresql")
@@ -16,6 +19,7 @@ class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
16
19
 
17
20
  t.timestamps
18
21
  end
22
+
19
23
  add_index :active_shrine_attachments, :name
20
24
  if ActiveRecord::Base.connection.adapter_name.downcase.include?("postgresql")
21
25
  add_index :active_shrine_attachments, :file_data, using: :gin
@@ -25,4 +29,14 @@ class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
25
29
  add_index :active_shrine_attachments, :metadata
26
30
  end
27
31
  end
32
+
33
+ private
34
+
35
+ def primary_and_foreign_key_types
36
+ config = Rails.configuration.generators
37
+ setting = config.options[config.orm][:primary_key_type]
38
+ primary_key_type = setting || :primary_key
39
+ foreign_key_type = setting || :bigint
40
+ [ primary_key_type, foreign_key_type ]
41
+ end
28
42
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_shrine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Radioactive Labs
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-02-04 00:00:00.000000000 Z
11
+ date: 2025-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties