Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 432 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 432 Bytes

CarrierWave for Neo4j

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

Installation Instructions

Add to your Gemfile:

gem 'carrierwave-neo4j', require: 'carrierwave/neo4j'

Use it like this:

class Asset
  include Neo4j::ActiveNode

  property :attachment, type: String
  mount_uploader :attachment, AttachmentUploader
end