2008-08-26 23:05:20 +00:00
|
|
|
Gem::Specification.new do |s|
|
2010-07-06 19:17:52 +00:00
|
|
|
s.name = "jrmey-mysqlplus"
|
2010-07-06 18:43:13 +00:00
|
|
|
s.version = "0.1.3"
|
2010-07-06 19:17:52 +00:00
|
|
|
s.date = "2010-07-04"
|
|
|
|
s.summary = "Enhanced Ruby MySQL driver with Ruby 1.9 support"
|
|
|
|
s.email = "jeremysuriel@gmail.com"
|
|
|
|
s.homepage = "http://github.com/jrmey/mysqlplus"
|
2008-08-26 23:05:20 +00:00
|
|
|
s.description = "Enhanced Ruby MySQL driver"
|
|
|
|
s.has_rdoc = true
|
2010-07-06 19:17:52 +00:00
|
|
|
s.authors = ["Muhammad A. Ali", "Jeremy Suriel"]
|
2008-08-26 23:05:20 +00:00
|
|
|
s.platform = Gem::Platform::RUBY
|
2009-03-23 02:17:07 +00:00
|
|
|
s.files = %w[
|
|
|
|
README
|
|
|
|
Rakefile
|
|
|
|
TODO_LIST
|
|
|
|
ext/error_const.h
|
|
|
|
ext/extconf.rb
|
|
|
|
ext/mysql.c
|
|
|
|
lib/mysqlplus.rb
|
|
|
|
mysqlplus.gemspec
|
2009-05-13 00:23:47 +00:00
|
|
|
] + Dir.glob('test/*')
|
2008-08-26 23:05:20 +00:00
|
|
|
s.rdoc_options = ["--main", "README"]
|
|
|
|
s.extra_rdoc_files = ["README"]
|
|
|
|
s.extensions << "ext/extconf.rb"
|
|
|
|
|
2010-05-18 13:47:53 +00:00
|
|
|
if s.respond_to? :specification_version then
|
|
|
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
|
|
s.specification_version = 3
|
|
|
|
end
|
|
|
|
end
|