forked from fabrik42/acts_as_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
48 lines (33 loc) · 1.05 KB
/
Rakefile
File metadata and controls
48 lines (33 loc) · 1.05 KB
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
require 'bundler'
require 'rspec/core'
require 'rspec/core/rake_task'
Bundler::GemHelper.install_tasks
RSpec::Core::RakeTask.new
namespace :spec do
supported_orms = %w(mongoid active_record)
supported_orms.each do |orm|
desc "Run #{orm} specs only"
RSpec::Core::RakeTask.new(orm) do |t|
t.rspec_opts = ["--color"]
end
task "prepare_#{orm}" do
ENV['ACTS_AS_API_ORM'] = orm
end
Rake::Task["spec:#{orm}"].prerequisites << "spec:prepare_#{orm}"
end
# task :all => supported_orms.map{|orm| "spec:#{orm}"}
desc "Runs specs for all ORMs (#{supported_orms.join(', ')})"
task :all do
supported_orms.each do |orm|
puts "Starting to run specs for #{orm}..."
system("bundle exec rake spec:#{orm}")
raise "#{orm} failed!" unless $?.exitstatus == 0
end
end
end
gemspec = Gem::Specification.load("acts_as_api.gemspec")
task :default => "spec:all"
desc "Generate the gh_pages site"
task :rocco do
system "bundle exec rocco examples/introduction/index.rb -t examples/introduction/layout.mustache"
end