Rakefile in tzinfo-0.3.14 vs Rakefile in tzinfo-0.3.15

- old
+ new

@@ -14,20 +14,20 @@ require 'rake/testtask' require 'rake/rdoctask' require 'rake/gempackagetask' require 'fileutils' -PKG_VERSION = "0.3.14" +PKG_VERSION = "0.3.15" PKG_FILES = FileList[ 'CHANGES', 'LICENSE', 'Rakefile', 'README', 'bin/**/*', - 'lib/**/*', - 'test/**/*' -] + 'lib/**/*' +].delete_if {|f| f.include?('.svn')} +PKG_TEST_FILES = FileList['test/**/*'].delete_if {|f| f.include?('.svn')} RDOC_OPTIONS = %w[--exclude definitions --exclude indexes] RDOC_EXTRA_FILES = %w[README CHANGES] BUILD_TZ_CLASSES_DIR = 'lib/tzinfo.build_tz_classes' @@ -38,12 +38,12 @@ s.author = "Philip Ross" s.email = "phil.ross@gmail.com" s.homepage = "http://tzinfo.rubyforge.org/" s.platform = Gem::Platform::RUBY s.summary = "Daylight-savings aware timezone library" - s.files = PKG_FILES.delete_if do |item| - item.include?(".svn") - end + s.description = "TZInfo is a Ruby library that uses the standard tz (Olson) database to provide daylight savings aware transformations between times in different time zones." + s.files = PKG_FILES + s.test_files = PKG_TEST_FILES s.require_path = "lib" s.has_rdoc = true s.extra_rdoc_files = RDOC_EXTRA_FILES s.rdoc_options = RDOC_OPTIONS s.rubyforge_project = "tzinfo"