mysqlplus/mysqlplus.gemspec

30 lines
888 B
Ruby
Raw Normal View History

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 19:21:27 +00:00
s.version = "0.1.4"
2010-07-06 19:17:52 +00:00
s.date = "2010-07-04"
2010-07-06 19:19:05 +00:00
s.summary = "Enhanced Ruby MySQL driver with Ruby 1.9 encoding awareness"
2010-07-06 19:17:52 +00:00
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
] + 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