2011-02-05 22:32:10 +09:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'bundler'
|
2011-04-20 07:50:22 +09:00
|
|
|
Bundler::GemHelper.install_tasks
|
2011-02-05 22:32:10 +09:00
|
|
|
|
|
|
|
require 'rspec/core'
|
|
|
|
require 'rspec/core/rake_task'
|
2012-06-08 14:33:21 -03:00
|
|
|
|
2011-02-05 22:32:10 +09:00
|
|
|
RSpec::Core::RakeTask.new(:spec) do |spec|
|
|
|
|
spec.pattern = FileList['spec/**/*_spec.rb']
|
|
|
|
end
|
|
|
|
|
2012-06-08 14:33:21 -03:00
|
|
|
task :default => "spec:all"
|
2011-02-05 22:32:10 +09:00
|
|
|
|
2012-05-17 21:23:37 +09:00
|
|
|
namespace :spec do
|
2014-03-08 22:58:55 -08:00
|
|
|
%w(active_record_edge active_record_40 active_record_41 active_record_32 active_record_31 active_record_30 data_mapper_12 mongoid_40 mongoid_31 mongoid_30 mongoid_24 mongo_mapper sinatra_13 sinatra_14).each do |gemfile|
|
2012-06-08 14:33:21 -03:00
|
|
|
desc "Run Tests against #{gemfile}"
|
2012-05-17 21:23:37 +09:00
|
|
|
task gemfile do
|
|
|
|
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle --quiet"
|
|
|
|
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle exec rake -t spec"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-08 14:33:21 -03:00
|
|
|
desc "Run Tests against all ORMs"
|
2012-05-17 21:23:37 +09:00
|
|
|
task :all do
|
2014-03-08 22:58:55 -08:00
|
|
|
%w(active_record_edge active_record_40 active_record_41 active_record_32 active_record_31 active_record_30 data_mapper_12 mongoid_40 mongoid_31 mongoid_30 mongoid_24 mongo_mapper sinatra_13 sinatra_14).each do |gemfile|
|
2012-05-17 21:23:37 +09:00
|
|
|
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle --quiet"
|
|
|
|
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle exec rake spec"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-15 09:07:46 -08:00
|
|
|
begin
|
|
|
|
require 'rdoc/task'
|
2012-05-20 21:15:26 +09:00
|
|
|
|
2013-12-15 09:07:46 -08:00
|
|
|
Rake::RDocTask.new do |rdoc|
|
|
|
|
require 'kaminari/version'
|
2011-02-05 22:32:10 +09:00
|
|
|
|
2013-12-15 09:07:46 -08:00
|
|
|
rdoc.rdoc_dir = 'rdoc'
|
|
|
|
rdoc.title = "kaminari #{Kaminari::VERSION}"
|
|
|
|
rdoc.rdoc_files.include('README*')
|
|
|
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
|
|
end
|
|
|
|
rescue LoadError
|
|
|
|
puts 'RDocTask is not supported on this VM and platform combination.'
|
2011-02-05 22:32:10 +09:00
|
|
|
end
|