Skip to content

xuzh86/paperclip-dimension-validator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

paperclip-dimension-validator

Validate them dimensions!

Installation

Add this line to your application's Gemfile:

gem 'paperclip-dimension-validator-a-it'

And then execute:

$ bundle

Or install it yourself as:

$ gem install paperclip-dimension-validator-a-it

Usage

This gem introduces the dimensions validator for Paperclip's validates_attachment. dimensions accepts a hash of height and width integer pixel values.

Example

class Image < ActiveRecord::Base
  has_attached_file :avatar

  validates_attachment :avatar, dimensions: { height: 30, width: 30 }
end

Testing

paperclip-dimension-validator includes rspec-compatible matchers for testing.

Note In order to use these matchers make sure to include either chunky_png or oily_png as a dependency in your Gemfile.

Gemfile

group :test do
  gem 'chunky_png'
end

RSpec

In spec_helper.rb, you'll need to require the matchers:

require 'paperclip/matchers/validate_attachment_dimesions_matcher'

And include the paperclip matchers module:

RSpec.configure do |config|
  config.include Paperclip::Shoulda::Matchers
end

Example

it { should validate_attachment_dimensions(:avatar).height(30).width(30) }

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

Validate image height and width for Paperclip

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%