Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

carrierwave-datamapper

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

carrierwave-datamapper

  • 0.2.2
  • Rubygems
  • Socket score

Version published
Maintainers
3
Created
Source

= CarrierWave for Datamapper

{Build Status}[https://travis-ci.org/jnicklas/carrierwave-datamapper]

This gem adds support for DataMapper to CarrierWave, see the CarrierWave documentation for more detailed usage instructions.

= Installation

gem install carrierwave-datamapper

Using bundler:

gem 'carrierwave-datamapper', :require => 'carrierwave/datamapper'

= Usage

require 'carrierwave/datamapper'

class ImageUploader < CarrierWave::Uploader::Base
  include CarrierWave::MiniMagick
end

class Image
  include DataMapper::Resource

  property :id, Serial

  mount_uploader :source, ImageUploader
end

This used to be part of CarrierWave but has been extracted.

FAQs

Package last updated on 18 Mar 2013

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc