11 lines
No EOL
189 B
Ruby
11 lines
No EOL
189 B
Ruby
# encoding: utf-8
|
|
|
|
class BaseUploader < CarrierWave::Uploader::Base
|
|
def cache_dir
|
|
if Rails.env.production?
|
|
'/tmp/tps-cache'
|
|
else
|
|
'/tmp/tps-dev-cache'
|
|
end
|
|
end
|
|
end |