public
Description: A Rails plugin for mixing action-specific helper modules into your view
Homepage:
Clone URL: git://github.com/duelinmarkers/actionhelper.git
actionhelper / Rakefile
100644 12 lines (9 sloc) 0.279 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rake'
require 'spec/rake/spectask'
 
desc 'Default: run specs.'
task :default => :spec
 
desc 'Run the specs'
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
  t.spec_files = FileList['spec/**/*_spec.rb']
end