namespace under Mongoid
This commit is contained in:
parent
0252373954
commit
3e71a3a54b
2
Rakefile
2
Rakefile
@ -1,5 +1,5 @@
|
||||
This.name =
|
||||
"GridFs"
|
||||
"Mongoid::GridFs"
|
||||
|
||||
This.synopsis =
|
||||
"a mongoid 3/moped compatible implementation of the grid_fs specification"
|
||||
|
@ -1,7 +1,8 @@
|
||||
##
|
||||
#
|
||||
module Mongoid
|
||||
class GridFS
|
||||
const_set :Version, '1.2.0'
|
||||
const_set :Version, '1.2.1'
|
||||
|
||||
class << GridFS
|
||||
def version
|
||||
@ -10,8 +11,8 @@
|
||||
|
||||
def dependencies
|
||||
{
|
||||
'mongoid' => [ 'mongoid' , ' >= 3.0.1' ] ,
|
||||
'mime/types' => [ 'mime-types' , ' >= 1.19' ] ,
|
||||
'mongoid' => [ 'mongoid' , '>= 3.0.1' ] ,
|
||||
'mime/types' => [ 'mime-types' , '>= 1.19' ] ,
|
||||
}
|
||||
end
|
||||
|
||||
@ -51,9 +52,11 @@
|
||||
require "digest/md5"
|
||||
require "cgi"
|
||||
end
|
||||
end
|
||||
|
||||
##
|
||||
#
|
||||
module Mongoid
|
||||
class GridFS
|
||||
class << GridFS
|
||||
attr_accessor :namespace
|
||||
@ -485,8 +488,6 @@
|
||||
end
|
||||
end
|
||||
|
||||
##
|
||||
#
|
||||
GridFs = GridFS
|
||||
|
||||
GridFS.init!
|
||||
end
|
||||
|
@ -1,8 +1,12 @@
|
||||
require_relative 'helper'
|
||||
|
||||
Testing GridFs do
|
||||
Testing Mongoid::GridFs do
|
||||
##
|
||||
#
|
||||
GridFS =
|
||||
GridFs =
|
||||
Mongoid::GridFS
|
||||
|
||||
prepare do
|
||||
GridFS::File.destroy_all
|
||||
GridFS::Chunk.destroy_all
|
||||
|
Loading…
Reference in New Issue
Block a user