forked from RolifyCommunity/rolify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
39 lines (32 loc) · 900 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
32
33
34
35
36
37
38
39
require 'bundler'
require 'rspec/core/rake_task'
require 'coveralls/rake/task'
require 'appraisal'
Bundler::GemHelper.install_tasks
Coveralls::RakeTask.new
RSpec::Core::RakeTask.new(:generators) do |task|
task.pattern = 'spec/generators/**/*_spec.rb'
end
RSpec::Core::RakeTask.new(:rolify) do |task|
task.pattern = 'spec/rolify/**/*_spec.rb'
end
if !ENV["APPRAISAL_INITIALIZED"] && !ENV["CI"]
task :default => :appraisal
else
task :default => [ :spec, 'coveralls:push' ]
end
desc 'Run all specs'
task 'spec' do
Rake::Task['generators'].invoke
return_code1 = $?.exitstatus
Rake::Task['rolify'].invoke
return_code2 = $?.exitstatus
fail if return_code1 != 0 || return_code2 != 0
end
desc 'Run specs for all adapters'
task :spec_all do
%w[active_record mongoid].each do |model_adapter|
puts "ADAPTER = #{model_adapter}"
system "ADAPTER=#{model_adapter} rake"
end
end