🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

photofy

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

photofy

bundlerRubygems
Version
0.6.4
Version published
Maintainers
3
Created
Source

Photofy

A simple ruby gem providing photo fields to rails model

Installation

Add this line to your application's Gemfile:

gem 'photofy'

And then execute:

$ bundle

Or install it yourself as:

$ gem install photofy

Usage

Add photo field(s) to model by adding lines like

photofy(:collage)

  • collage : Getter,
  • collage? : Returns true if assignment is having value other than nil else false,
  • collage = : Setter. Acceptable inputs are file upload(ActionDispatch::Http::UploadedFile), file and String(format validation is ignored),
  • collage_path : File path of assignment,
  • collage_s3publicpath : Public aws s3 url provider if (aws s3 is used as storage)
  • collage_persisted? : Gives true if provided file/data is stored on disk,
  • collage_store! : To store provided file/data on disk,
  • collage_destroy! : To destroy stored file/data from disk

photofy(:collage_sec, {parent_photo_field: :collage})

Automatically creates a collage_sec photo field from :collage parent field

photofy(:stamp, {image_processor: Proc.new { |img| img.scale(25, 25) }})

Process image to scale(refer imagemagick/rmagick for other image manipulations) of 25x25px when image is saved.

after_photofy :collage, :post_card, Proc.new { |img| img.scale(450, 200) }

Creates 'post_card' photo field by taking source from 'collage' and scaling it to 450x200px.

FAQs

Package last updated on 13 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts