Created
April 1, 2013 18:57
-
-
Save kylemacey/5286882 to your computer and use it in GitHub Desktop.
Paperclip interpolator to use http://www.placehold.it for default image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Paperclip.interpolates(:placehold_it) do |attachment, style| | |
# assumes using dimensions specified as integer, eg "250x250#" | |
params = attachment.styles[style][:geometry].match(/\d+x\d+/).to_s + "&text=#{attachment.instance.name}" | |
"http://www.placehold.it/" + params | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment