mongoid-grid_fs
Go to file
2012-07-23 00:29:15 -06:00
lib first commit 2012-07-23 00:29:15 -06:00
pkg first commit 2012-07-23 00:29:15 -06:00
test first commit 2012-07-23 00:29:15 -06:00
.a.rb.swp first commit 2012-07-23 00:29:15 -06:00
.Rakefile.swp first commit 2012-07-23 00:29:15 -06:00
.README.md.swp first commit 2012-07-23 00:29:15 -06:00
mongoid-grid_fs.gemspec first commit 2012-07-23 00:29:15 -06:00
Rakefile first commit 2012-07-23 00:29:15 -06:00
README.md first commit 2012-07-23 00:29:15 -06:00

NAME

mongoid_grid_fs

SYNOPSIS


  require 'mongoid-grid_fs'

  g = GridFs.put anthing_that_respons_to_read

  GridFS.get id

  GridFS.delete id


DESCRIPTION

mongoid_grid_fs is pure mongoid 3 / moped implementation of the mongodb grid_fs specification

ref: http://www.mongodb.org/display/DOCS/GridFS+Specification

it has the following features:

- implementation is on top of mongoid for portability.  moped (the drive)
  is barely used

- simple, REST-like api

- support for custom namespaces (fs.files vs. image.files)

- pathnames and io-like objects can be written to the grid

- auto-unique pathnames are generated (by default) to avoid collisions using #put

    'path/info/a.rb' -> '$object_id/a.rb'

- #[] and #[]= methods which allow the grid to be used like a giant file
  hash in the sky

- supprt for data_uris

  ````eruby

    <%= image_tag :src => file.data_url %>

  ````