Module: CarrierWave::Uploader::Url
- Included in:
- Base
- Defined in:
- lib/carrierwave/uploader/url.rb
Instance Method Summary (collapse)
-
- (Object) as_json(options = nil)
Returns.
-
- (Object) url
(also: #to_s)
Returns.
Instance Method Details
- (Object) as_json(options = nil)
Returns
- String
-
A JSON serializtion containing this uploader's URL
27 28 29 |
# File 'lib/carrierwave/uploader/url.rb', line 27 def as_json( = nil) { :url => url } end |
- (Object) url Also known as: to_s
Returns
- String
-
the location where this file is accessible via a url
12 13 14 15 16 17 18 |
# File 'lib/carrierwave/uploader/url.rb', line 12 def url if file.respond_to?(:url) and not file.url.blank? file.url elsif current_path File.(current_path).gsub(File.(root), '') end end |