active_shrine 0.3.0 → 0.3.2
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 +4 -4
- data/README.md +2 -2
- data/lib/active_shrine/attachment.rb +2 -2
- data/lib/active_shrine/model.rb +13 -3
- data/lib/active_shrine/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68420676b709a0b738732e6d4e998b2010a28188d0af8d6ec47d9274f86f8c30
|
4
|
+
data.tar.gz: c8c1e33ad01d3d07b54fab1b8beedec11800a1e4f44a489ece88eefb939063f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b87b2538807f950cd060feda4088dccbdf8a2fc145208eb1d0bb485c7f57b80efab78a6dea56306fcb2c30fda53bfc736d32e011a1ac44d744ca927df4755f50
|
7
|
+
data.tar.gz: b5e9904ec3fcd54f08d944f639d222642b46d336d0088a4aebd25c83c999100d4d7fa8fe421bfc95dbcb4314bbb5f68e7c458d5a6243543da0aa922786b4f4fc
|
data/README.md
CHANGED
@@ -121,7 +121,7 @@ After checking out the repo:
|
|
121
121
|
4. Push to the branch (`git push origin my-new-feature`)
|
122
122
|
5. Create new Pull Request
|
123
123
|
|
124
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
124
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/radioactive-labs/active_shrine.
|
125
125
|
|
126
126
|
## License
|
127
127
|
|
@@ -129,4 +129,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
129
129
|
|
130
130
|
## Code of Conduct
|
131
131
|
|
132
|
-
Everyone interacting in the ActiveShrine project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/active_shrine/blob/main/CODE_OF_CONDUCT.md).
|
132
|
+
Everyone interacting in the ActiveShrine project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/active_shrine/blob/main/CODE_OF_CONDUCT.md).
|
data/lib/active_shrine/model.rb
CHANGED
@@ -137,7 +137,12 @@ module ActiveShrine
|
|
137
137
|
|
138
138
|
scope :"with_attached_#{name}", -> { includes(:"#{name}_attachment") }
|
139
139
|
|
140
|
-
after_save
|
140
|
+
after_save do
|
141
|
+
shrine_attachment_changes[name.to_s]&.save
|
142
|
+
rescue => e
|
143
|
+
errors.add(name, :invalid, message: "failed to save. Please make sure it is a valid file.")
|
144
|
+
raise ActiveRecord::RecordInvalid.new(self)
|
145
|
+
end
|
141
146
|
|
142
147
|
after_commit(on: %i[create update]) { shrine_attachment_changes.delete(name.to_s) }
|
143
148
|
|
@@ -201,7 +206,7 @@ module ActiveShrine
|
|
201
206
|
# <tt>active_shrine_attachments.record_type</tt> polymorphic type column of
|
202
207
|
# the corresponding rows.
|
203
208
|
def has_many_attached(name, uploader: ::Shrine, dependent: :destroy, strict_loading: false)
|
204
|
-
|
209
|
+
attachment_class, attachment_class_name = resolve_attachment_class(uploader)
|
205
210
|
|
206
211
|
generated_association_methods.class_eval <<-CODE, __FILE__, __LINE__ + 1
|
207
212
|
# frozen_string_literal: true
|
@@ -232,7 +237,12 @@ module ActiveShrine
|
|
232
237
|
|
233
238
|
scope :"with_attached_#{name}", -> { includes(:"#{name}_attachments") }
|
234
239
|
|
235
|
-
after_save
|
240
|
+
after_save do
|
241
|
+
shrine_attachment_changes[name.to_s]&.save
|
242
|
+
rescue => e
|
243
|
+
errors.add(name, :invalid, message: "failed to save. Please make sure it is a valid file.")
|
244
|
+
raise ActiveRecord::RecordInvalid.new(self)
|
245
|
+
end
|
236
246
|
|
237
247
|
after_commit(on: %i[create update]) { shrine_attachment_changes.delete(name.to_s) }
|
238
248
|
|
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
|
+
version: 0.3.2
|
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-
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|