class NamedStringIO
Attributes
content_type[RW]
original_filename[RW]
Public Class Methods
new(text, filename, type)
click to toggle source
Calls superclass method
# File lib/paperclip/staging.rb, line 12 def initialize(text, filename, type) super(text) self.original_filename = filename self.content_type = type end