forked from derailed/mongo_rack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
31 lines (27 loc) · 759 Bytes
/
Rakefile
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
begin
require 'bones'
Bones.setup
rescue LoadError
begin
load 'tasks/setup.rb'
rescue LoadError
raise RuntimeError, '### please install the "bones" gem ###'
end
end
ensure_in_path 'lib'
require 'mongo_rack'
task :default => 'spec:run'
PROJ.name = 'mongo_rack'
PROJ.version = "0.0.5"
PROJ.authors = 'Fernand Galiana'
PROJ.email = '[email protected]'
PROJ.url = 'https://github.com/derailed/mongo_rack'
PROJ.summary = "Rackable mongoDB based session management"
PROJ.ruby_opts = %w[-W0]
PROJ.readme = 'README.rdoc'
PROJ.rcov.opts = ["--sort", "coverage", "-T"]
PROJ.spec.opts << '--color'
# Dependencies
depend_on "rack" , ">= 1.0.1"
depend_on "mongo" , ">= 0.18.2"
depend_on "mongo_ext", ">= 0.18.2"