Show
Ignore:
Timestamp:
07/11/08 17:56:49 (5 months ago)
Author:
deveiant
Message:
  • Synched Rakefile with rake-tasklibs
  • Started conversion of synset tests to specs
  • Finished converting lexicon tests to specs
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/rakefile-work/Rakefile

    r92 r93  
    6060SPEC_EXCLUDES = 'spec,/Library/Ruby,/var/lib,/usr/local/lib' 
    6161 
    62 COVERAGE_MINIMUM = 83.0 
    63  
    64 RELEASE_FILES = FileList[ TEXT_FILES + SPEC_FILES + LIB_FILES + EXT_FILES ] 
     62TESTDIR       = BASEDIR + 'tests' 
     63TEST_FILES    = Pathname.glob( TESTDIR + '**/*.tests.rb' ) 
     64 
     65RELEASE_FILES = FileList[ TEXT_FILES + SPEC_FILES + TEST_FILES + LIB_FILES + EXT_FILES ] 
    6566 
    6667 
     
    192193### Cruisecontrol task 
    193194desc "Cruisecontrol build" 
    194 task :cruise => [:clean, 'coverage:verify', :package] do |task| 
     195task :cruise => [:clean, :spec, :package] do |task| 
    195196    raise "Artifacts dir not set." if ARTIFACTS_DIR.to_s.empty? 
    196197    artifact_dir = ARTIFACTS_DIR.cleanpath