rails/activestorage/app
Shouichi Kamiya b1c544b1d1 Add an option to preprocessed AS variants
ActiveStorage variants are processed on the fly when they are needed but
sometimes we're sure that they are accessed and want to processed them
upfront.

`preprocessed` option is added when declaring variants.

```
class User < ApplicationRecord
  has_one_attached :avatar do |attachable|
    attachable.variant :thumb, resize_to_limit: [100, 100], preprocessed: true
  end
end
```
2023-07-03 19:36:14 +09:00
..
assets/javascripts fix: add compiled js from activestorage 2023-03-26 17:05:10 -03:00
controllers Replace deprecated Rack::File with Rack::Files 2023-01-21 09:34:21 +09:00
javascript/activestorage fix: typo on js method 2023-03-26 15:52:15 -03:00
jobs/active_storage Add an option to preprocessed AS variants 2023-07-03 19:36:14 +09:00
models/active_storage Add an option to preprocessed AS variants 2023-07-03 19:36:14 +09:00