Skip to content

Instantly share code, notes, and snippets.

@purplejacket
Created August 23, 2011 21:43
Show Gist options
  • Save purplejacket/1166662 to your computer and use it in GitHub Desktop.
Save purplejacket/1166662 to your computer and use it in GitHub Desktop.
Picture class without S3 authentication
class Ckeditor::Picture < Ckeditor::Asset
has_attached_file :data,
:url => "/ckeditor_assets/pictures/:id/:style_:basename.:extension",
:path => ":rails_root/public/ckeditor_assets/" +
"pictures/:id/:style_:basename.:extension",
:styles => {:content => '800>', :thumb => '118x100#'}
# etc....
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment