forked from mongoid/mongoid-grid_fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongoid-grid_fs.gemspec
49 lines (38 loc) · 1.15 KB
/
mongoid-grid_fs.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
## mongoid-grid_fs.gemspec
#
Gem::Specification::new do |spec|
spec.name = "mongoid-grid_fs"
spec.version = "1.9.0"
spec.platform = Gem::Platform::RUBY
spec.summary = "mongoid-grid_fs"
spec.description = "a mongoid 3/moped compatible implementation of the grid_fs specification"
spec.license = "Ruby"
spec.files =
["README.md",
"Rakefile",
"lib",
"lib/app",
"lib/app/models",
"lib/app/models/mongoid",
"lib/app/models/mongoid/grid_fs",
"lib/app/models/mongoid/grid_fs.rb",
"lib/app/models/mongoid/grid_fs/fs",
"lib/app/models/mongoid/grid_fs/fs/chunk.rb",
"lib/app/models/mongoid/grid_fs/fs/file.rb",
"lib/mongoid-grid_fs.rb",
"mongoid-grid_fs.gemspec",
"test",
"test/helper.rb",
"test/mongoid-grid_fs_test.rb",
"test/testing.rb"]
spec.executables = []
spec.require_path = "lib"
spec.test_files = nil
spec.add_dependency(*["mongoid", ">= 4.0.0.alpha1", "< 5.0"])
spec.add_dependency(*["mime-types", "~> 1.19"])
spec.extensions.push(*[])
spec.rubyforge_project = "codeforpeople"
spec.author = "Ara T. Howard"
spec.email = "[email protected]"
spec.homepage = "https://github.com/ahoward/mongoid-grid_fs"
end