mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 07:01:42 +00:00
crear thumbnails y resolver un bug con los nombres de las imagenes
This commit is contained in:
parent
b76ac00206
commit
68b6e5ab2c
1 changed files with 15 additions and 1 deletions
|
@ -3,6 +3,20 @@ class Post::ImageUploader < CarrierWave::Uploader::Base
|
|||
|
||||
attr_accessor :site
|
||||
|
||||
process :strip
|
||||
|
||||
version :thumb do
|
||||
process :strip
|
||||
process resize_to_fill: [200,200]
|
||||
end
|
||||
|
||||
def strip
|
||||
manipulate! do |img|
|
||||
img.strip
|
||||
img
|
||||
end
|
||||
end
|
||||
|
||||
# Necesitamos pasar el sitio para poder acceder a los archivos locales
|
||||
def initialize(site)
|
||||
super
|
||||
|
@ -29,7 +43,7 @@ class Post::ImageUploader < CarrierWave::Uploader::Base
|
|||
# XXX los nombres de los archivos siempre son únicos, no chequeamos si
|
||||
# están repetidos.
|
||||
def filename
|
||||
[SecureRandom.uuid, '.', file.extension].join
|
||||
@unique_filename ||= [SecureRandom.uuid, '.', file.extension].join
|
||||
end
|
||||
|
||||
# Obtener la URL dentro del proyecto de Jekyll
|
||||
|
|
Loading…
Reference in a new issue