forked from greyblake/fast_seeder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
59 lines (48 loc) · 1.26 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
#!/usr/bin/env rake
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'
Bundler::GemHelper.install_tasks
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
Rake::Task[:spec].enhance ['db:setup']
namespace :spec do
desc "run specs with postgresql adapter"
task :postgresql do
ENV['ADAPTER'] = 'postgresql'
Rake::Task[:spec].invoke
end
desc "run specs with mysql adapter"
task :mysql do
ENV['ADAPTER'] = 'mysql'
Rake::Task[:spec].invoke
end
desc "run specs with mysql2 adapter"
task :mysql2 do
ENV['ADAPTER'] = 'mysql2'
Rake::Task[:spec].invoke
end
desc "run specs with sqlite3 adapter"
task :sqlite3 do
ENV['ADAPTER'] = 'sqlite3'
Rake::Task[:spec].invoke
end
desc "run specs with all supported adapters"
task :all do
adapters = %w(postgresql mysql mysql2 sqlite3)
adapters.each do |adapter|
puts "=" * 80
puts adapter.center(80)
puts "=" * 80
system "rake spec:#{adapter}"
end
end
end
task :default => 'spec:all'