Show
Ignore:
Timestamp:
01/21/08 20:15:59 (10 months ago)
Author:
hsbt
Message:

platform/tdiary/Rakefile: add rspec task.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • platform/tdiary/Rakefile

    r5149 r5181  
    1414desc 'update source and packaging' 
    1515task :default => [:update, :package, :clean] 
     16 
     17desc "Run all specs" 
     18task :spec do 
     19        require 'rake' 
     20        require 'spec/rake/spectask' 
     21        Spec::Rake::SpecTask.new do |t| 
     22                t.spec_files = FileList['spec/**/*_spec.rb'] 
     23                t.spec_opts = ['--options', 'spec/spec.opts'] 
     24        end 
     25end 
    1626 
    1727desc 'Update files from Subversion Repository'