ulmic/tramway-dev

View on GitHub
tramway-landing/app/uploaders/tramway/landing/photo_versions.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Tramway::Landing::PhotoVersions
  extend ActiveSupport::Concern

  included do
    version :card do
      process resize_to_fill: [400, 400, 'North']
    end

    version :horizontal do
      process resize_to_fill: [1600, 700, 'Center']
    end

    version :mini do
      process resize_to_fill: [300, nil]
    end
  end
end