Rakefile in rio-0.3.7 vs Rakefile in rio-0.3.8

- old
+ new

@@ -1,8 +1,8 @@ #-- # =============================================================================== -# Copyright (c) 2005, Christopher Kleckner +# Copyright (c) 2005, 2006 Christopher Kleckner # All rights reserved # # This file is part of the Rio library for ruby. # # Rio is free software; you can redistribute it and/or modify @@ -19,11 +19,11 @@ # along with Rio; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # =============================================================================== # # To create the documentation for Rio run the command -# rake rdoc +# ruby build_doc.rb # from the distribution directory. #++ begin require 'rubygems' @@ -40,24 +40,24 @@ $:.push 'lib' require 'rio/version' require 'rio/doc' -SVN_REPOSITORY_URL = 'file:///loc/svn/' +SVN_REPOSITORY_URL = '' SRC_FILES = FileList['lib/**/*.rb'] DOC_FILES = FileList['README','lib/rio.rb','lib/rio/doc/*.rb', 'lib/rio/if/*.rb','lib/rio/kernel.rb','lib/rio/constructor.rb'] XMP_FILES = FileList['ex/*'] module PKG NAME = "rio" TITLE = RIO::TITLE - VERSION = '0.3.7' + VERSION = RIO::VERSION FULLNAME = PKG::NAME + "-" + PKG::VERSION SUMMARY = RIO::SUMMARY DESCRIPTION = RIO::DESCRIPTION - FILES = FileList.new(['setup.rb', 'RUNME.1st.rb', 'COPYING', 'Rakefile', 'ChangeLog', 'VERSION', + FILES = FileList.new(['setup.rb', 'build_doc.rb', 'COPYING', 'Rakefile', 'ChangeLog', 'VERSION', 'test/**/*.rb','doc/**/*'] + SRC_FILES.to_a + DOC_FILES.to_a + XMP_FILES.to_a ) do |fl| fl.exclude( /\bsvn\b/ ) fl.exclude( 'test/qp' ) fl.exclude( 'test/coverage' )