forked from tmtm/ruby-mysql
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby-mysql.gemspec
More file actions
30 lines (27 loc) · 1.19 KB
/
ruby-mysql.gemspec
File metadata and controls
30 lines (27 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Gem::Specification.new do |s|
s.name = %q{ruby-mysql}
s.version = "2.9.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["tommy"]
s.date = %q{2010-01-22}
s.description = %q{MySQL connector for Ruby}
s.email = %q{tommy@tmtm.org}
s.extra_rdoc_files = ["README.rdoc", "ChangeLog"]
s.files = ["README.rdoc", "ChangeLog", "lib/mysql.rb", "lib/mysql/constants.rb", "lib/mysql/protocol.rb", "lib/mysql/charset.rb", "lib/mysql/error.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/tmtm/ruby-mysql}
s.rdoc_options = ["--title", "ruby-mysql documentation", "--charset", "utf-8", "--opname", "index.html", "--line-numbers", "--main", "README", "--inline-source", "--exclude", "^(examples|extras)/"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.8.7")
s.rubyforge_project = %q{rubymysql}
s.rubygems_version = %q{1.2.0}
s.summary = %q{MySQL connector for Ruby}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if current_version >= 3 then
else
end
else
end
end