ペーパークリップでスタイル エイリアスを定義する方法はありますか (同じ変換、同じファイル パス)。
# in the model
has_attached_file :image, {
:styles => {
:thumb => "90x90>",
:small => :thumb
}
[...]
}
# in the application
model.image.url(:thumb)
=> 'path/to/image/thumb.jpg'
model.image.url(:small)
=> 'path/to/image/thumb.jpg'
現在、多くの重複したスタイルがあるアプリケーションをリファクタリングしています。インターフェイスを壊さずに、一度定義したいと思います。