class Paperweight::Configuration

Allows configuring certain attributes about how to process attachments.

Attributes

download_attempts[RW]
max_size[RW]

Public Class Methods

new() click to toggle source
# File lib/paperweight/configuration.rb, line 9
def initialize
  @download_attempts = 1
  @max_size = 10 * 1024 * 1024
end