public
Description: A Rails plugin that adds the ability to automatically stamp each record with the currently logged in user.
Homepage:
Clone URL: git://github.com/jnunemaker/user_stamp.git
Click here to lend your support to: user_stamp and make a donation at www.pledgie.com !
user_stamp / Rakefile
100644 11 lines (9 sloc) 0.279 kb
1
2
3
4
5
6
7
8
9
10
11
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