Update gemspec

This commit is contained in:
Aman Gupta 2009-03-22 19:17:07 -07:00
parent 3198fc25e7
commit 6768cc73dc
1 changed files with 21 additions and 15 deletions

View File

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