diff --git a/mysqlplus.gemspec b/mysqlplus.gemspec index 3cf754e..d1acafe 100755 --- a/mysqlplus.gemspec +++ b/mysqlplus.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = "mysqlplus" - s.version = "0.1.0" - s.date = "2008-08-13" + s.version = "0.1.1" + s.date = "2009-03-22" s.summary = "Enhanced Ruby MySQL driver" s.email = "oldmoe@gmail.com" s.homepage = "http://github.com/oldmoe/mysqlplus" @@ -9,19 +9,25 @@ Gem::Specification.new do |s| s.has_rdoc = true s.authors = ["Muhammad A. Ali"] s.platform = Gem::Platform::RUBY - s.files = [ - "mysqlplus.gemspec", - "README", - "Rakefile", - "lib/mysqlplus.rb", - "test/test_helper.rb", - "test/native_threaded_test.rb", - "test/c_threaded_test.rb", - "test/evented_test.rb", - "ext/error_const.h", - "ext/extconf.rb", - "ext/mysql.c" - ] + s.files = %w[ + README + Rakefile + TODO_LIST + ext/error_const.h + ext/extconf.rb + ext/mysql.c + lib/mysqlplus.rb + mysqlplus.gemspec + test/c_threaded_test.rb + test/evented_test.rb + test/native_threaded_test.rb + test/test_all_hashes.rb + test/test_failure.rb + test/test_helper.rb + test/test_many_requests.rb + test/test_parsing_while_response_is_being_read.rb + test/test_threaded_sequel.rb + ] s.rdoc_options = ["--main", "README"] s.extra_rdoc_files = ["README"] s.extensions << "ext/extconf.rb"