2014-06-05 17:51:22 +05:30
|
|
|
class Sponsor < ActiveRecord::Base
|
|
|
|
|
belongs_to :sponsorship_level
|
|
|
|
|
belongs_to :conference
|
|
|
|
|
has_attached_file :logo,
|
2016-04-20 12:13:07 +05:30
|
|
|
styles: { thumb: '100x100>',
|
|
|
|
|
first: '320x180>',
|
|
|
|
|
second: '320x150>',
|
|
|
|
|
others: '320x120>' },
|
|
|
|
|
# places logo on a white background to maintain size
|
|
|
|
|
convert_options: {
|
|
|
|
|
first: '-background white -gravity center -extent 320x180',
|
|
|
|
|
second: '-background white -gravity center -extent 320x150',
|
|
|
|
|
others: '-background white -gravity center -extent 320x120'
|
|
|
|
|
}
|
2014-06-05 17:51:22 +05:30
|
|
|
|
|
|
|
|
validates_attachment_content_type :logo,
|
|
|
|
|
content_type: [/jpg/, /jpeg/, /png/, /gif/],
|
2016-04-20 12:13:07 +05:30
|
|
|
size: { in: 0..500.kilobytes }
|
2016-04-07 14:38:36 -06:00
|
|
|
|
2016-04-20 12:13:07 +05:30
|
|
|
validates_presence_of :name, :website_url, :sponsorship_level, :logo
|
2014-06-05 17:51:22 +05:30
|
|
|
end
|