Skip to content

Instantly share code, notes, and snippets.

@leemcalilly
Created August 2, 2013 12:42
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 leemcalilly/49e04fa1dda891dd108b to your computer and use it in GitHub Desktop.
Save leemcalilly/49e04fa1dda891dd108b to your computer and use it in GitHub Desktop.
CarrierWave.configure do |config|
config.fog_credentials = {
:provider => 'AWS',
:aws_access_key_id => 'XXXXXXXXX',
:aws_secret_access_key => 'XXXXXXXXX'
}
if Rails.env.test?
CarrierWave.configure do |config|
config.storage = :file
config.enable_processing = false
end
end
if Rails.env.development?
config.fog_directory = 'fuzzguide-dev'
elsif Rails.env.production?
config.fog_directory = 'fuzzguide-prod'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment