Created
June 21, 2016 13:01
-
-
Save benbonnet/393934f265bfaec5bb346b89112ab89f to your computer and use it in GitHub Desktop.
asset.rb.part
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
has_attached_file :image, | |
storage: :fog, | |
fog_credentials: "#{Rails.root}/config/gce.yml", | |
fog_directory: ENV["GOOGLE_CLOUD_STORAGE_BUCKET"], | |
:fog_host => Proc.new { |image| "https://etapes#{ image.instance.id % 4}.imgix.net" }, | |
:path => ":sited_path/:named_path.:extension", | |
:url => ":sited_path/:named_path.:extension" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment