Skip to content

Instantly share code, notes, and snippets.

@Frank004
Created July 13, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Frank004/ec61953d3080b56e2b4db55427aad5a8 to your computer and use it in GitHub Desktop.
Save Frank004/ec61953d3080b56e2b4db55427aad5a8 to your computer and use it in GitHub Desktop.
class Article < ActiveRecord::Base
has_attached_file :cover, styles: { medium: "1280x720", thumb: "800x600" }
validates_attachment_content_type :cover, content_type: /\Aimage\/.*\Z/
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment