-
Notifications
You must be signed in to change notification settings - Fork 10
dusty/mongoid_grid
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Mongoid::Grid mongoid_grid is a GridFS plugin for Mongoid::Document ***NOTE: The rack helper is no longer included in this project. If you need it, please switch to rack_grid: https://github.com/dusty/rack_grid Installation # git clone https://github.com/dusty/mongoid_grid.git # gem build mongoid_grid.gemspec # gem install mongoid_grid-0.0.x.gem Usage require 'mongoid_grid' class Monkey include Mongoid::Document include Mongoid::Grid field :name attachment :image end m = Monkey.create(:name => 'name') # To add an attachment m.image = File.open('/tmp/me.jpg') m.save # To remove an attachment m.image = nil m.save # To get the attachment m.image.read Inspired By - http://github.com/jnunemaker/grip
About
Plugin for Mongoid to use GridFS and a Rack helper
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published