Skip to content

Instantly share code, notes, and snippets.

@tobyturnbullknokal
Created June 30, 2016 00:51
Show Gist options
  • Save tobyturnbullknokal/04afb8963d4c369ca3bcbc1254c021c7 to your computer and use it in GitHub Desktop.
Save tobyturnbullknokal/04afb8963d4c369ca3bcbc1254c021c7 to your computer and use it in GitHub Desktop.
if Rails.env.test?
has_attached_file :logo,
styles: { medium: '300x300>', thumb: '100x100>' },
default_url: '/images/:style/missing.png'
else
has_attached_file :logo,
styles: { medium: '300x300>', thumb: '100x100>' },
default_url: "http://#{ENV['AWS_ASSETS_BUCKET']}.#{ENV['AWS_BUCKET_ZONE']}.amazonaws.com/businesses/logos/default/missing.png",
storage: :s3,
s3_credentials: "#{Rails.root}/config/aws.yml",
s3_host_name: "#{ENV['AWS_BUCKET_ZONE']}.amazonaws.com",
bucket: ENV['AWS_ASSETS_BUCKET'],
s3_protocol: :https
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment