Skip to content

Instantly share code, notes, and snippets.

@vinniefranco
Created January 7, 2011 07:52
Show Gist options
  • Save vinniefranco/769237 to your computer and use it in GitHub Desktop.
Save vinniefranco/769237 to your computer and use it in GitHub Desktop.
class Article < ActiveRecord::Base
def image=(file)
uploader = ArticleUploader.new
uploader.store!(file)
self.small = uploader.small.url
self.original = uploader.url
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment