Provides Reform integration for Shrine.
gem "shrine-reform"The reform plugin can be loaded globally alongside activerecord plugin.
Shrine.plugin :activerecord
Shrine.plugin :reformclass Post < ActiveRecord::Base
include ImageUploader::Attachment.new(:image)
endclass PostForm < Reform::Form
include ImageUploader::Attachment.new(:image)
endYou can run tests with the Rake task:
$ bundle exec rake test