forked from redis-store/redis-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
60 lines (50 loc) · 1.56 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
$:.unshift 'lib'
require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'spec/rake/spectask'
task :default => "spec:suite"
begin
require "jeweler"
Jeweler::Tasks.new do |gemspec|
gemspec.name = "#{ENV["GEM_PREFIX"]}redis-store"
gemspec.summary = "Namespaced Rack::Session, Rack::Cache, I18n and cache Redis stores for Ruby web frameworks."
gemspec.description = "Namespaced Rack::Session, Rack::Cache, I18n and cache Redis stores for Ruby web frameworks."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/jodosha/redis-store"
gemspec.authors = [ "Luca Guidi" ]
gemspec.executables = [ ]
gemspec.add_dependency "redis", ">= 2.0.0"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
namespace :spec do
desc "Run all the examples by starting a detached Redis instance"
task :suite => :prepare do
invoke_with_redis_replication "spec:run"
end
Spec::Rake::SpecTask.new(:run) do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.spec_opts = %w(-fs --color)
end
end
desc "Run all examples with RCov"
task :rcov => :prepare do
invoke_with_redis_replication "rcov_run"
end
Spec::Rake::SpecTask.new(:rcov_run) do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.rcov = true
end
task :prepare do
`mkdir -p tmp && rm tmp/*.rdb`
end
namespace :bundle do
task :clean do
system "rm -rf ~/.bundle/ ~/.gem/ .bundle/ Gemfile.lock"
end
end
load "tasks/redis.tasks.rb"