Class: Paperclip::UrlGenerator

Inherits:
Object
  • Object
show all
Defined in:
lib/paperclip/url_generator.rb

Instance Method Summary collapse

Constructor Details

#initialize(attachment) ⇒ UrlGenerator

Returns a new instance of UrlGenerator.



6
7
8
# File 'lib/paperclip/url_generator.rb', line 6

def initialize(attachment)
  @attachment = attachment
end

Instance Method Details

#for(style_name, options) ⇒ Object



10
11
12
13
14
15
16
17
# File 'lib/paperclip/url_generator.rb', line 10

def for(style_name, options)
  interpolated = attachment_options[:interpolator].interpolate(
    most_appropriate_url, @attachment, style_name
  )

  escaped = escape_url_as_needed(interpolated, options)
  timestamp_as_needed(escaped, options)
end