Changeset 92

Show
Ignore:
Timestamp:
07/10/08 06:27:07 (3 months ago)
Author:
deveiant
Message:
  • Fixed the test for an existing data directory in the conversion script
  • Set coverage minimum to 83% until I can get more tests written
  • Removed some more old files
Location:
branches/rakefile-work
Files:
2 removed
2 modified

Legend:

Unmodified
Added
Removed
  • branches/rakefile-work/Rakefile

    r90 r92  
    6060SPEC_EXCLUDES = 'spec,/Library/Ruby,/var/lib,/usr/local/lib' 
    6161 
     62COVERAGE_MINIMUM = 83.0 
    6263 
    6364RELEASE_FILES = FileList[ TEXT_FILES + SPEC_FILES + LIB_FILES + EXT_FILES ] 
  • branches/rakefile-work/convertdb.rb

    r90 r92  
    100100        # Open the database and check to be sure it's empty. Confirm overwrite if 
    101101        # not. Checkpoint and set up logging proc if debugging. 
    102         if @builddir.exist? && @builddir.entries.include?( 'data' ) 
     102        if @builddir.exist? && ( @builddir + 'data' ).exist? 
    103103            message ">>> Warning: Existing data in the Ruby-WordNet databases\n"\ 
    104104                "will be overwritten.\n"