public
Description: Rails plugin that paginates a model in a descendant order and works with i18n in the view
Homepage: www.diegocarrion.com
Clone URL: git://github.com/dcrec1/will_paginate_latests.git
Diego Carrion (author)
Wed Dec 03 08:57:35 -0800 2008
commit  cd041797f5d296159390f3b36343d0f9bc111dac
tree    e280bff42bb1adbb7746321245c7d7cd632ace82
parent  9cc42023d2e9c6a0268ffbb193412f774079f234
100644 18 lines (14 sloc) 0.4 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
require 'spec/rake/spectask'
 
Spec::Rake::SpecTask.new do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.spec_opts = %w(-fs --color)
end
 
desc "Run all examples with RCov"
Spec::Rake::SpecTask.new('rcov') do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec,lib,config']
end