Skip to content

Instantly share code, notes, and snippets.

@benbonnet
Created June 21, 2016 13:01
Show Gist options
  • Save benbonnet/393934f265bfaec5bb346b89112ab89f to your computer and use it in GitHub Desktop.
Save benbonnet/393934f265bfaec5bb346b89112ab89f to your computer and use it in GitHub Desktop.
asset.rb.part
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