Module: CarrierWave::Uploader::Url

Extended by:
ActiveSupport::Concern
Includes:
Configuration
Included in:
Base
Defined in:
lib/carrierwave/uploader/url.rb

Instance Method Summary collapse

Instance Method Details

#to_sObject



26
27
28
# File 'lib/carrierwave/uploader/url.rb', line 26

def to_s
  url || ''
end

#url(options = {}) ⇒ Object

Parameters

Hash

optional, the query params (only AWS)

Returns

String

the location where this file is accessible via a url



18
19
20
21
22
23
24
# File 'lib/carrierwave/uploader/url.rb', line 18

def url(options = {})
  if file.respond_to?(:url) and not file.url.blank?
    file.method(:url).arity == 0 ? file.url : file.url(options)
  elsif current_path
    (base_path || "") + File.expand_path(current_path).gsub(File.expand_path(root), '')
  end
end