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