fix gemspec due to some file renaming
This commit is contained in:
parent
77cd0c435d
commit
062b83062f
|
@ -9,9 +9,9 @@ Gem::Specification.new do |s|
|
|||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Brian Lopez"]
|
||||
s.date = %q{2010-06-02}
|
||||
s.date = %q{2010-06-29}
|
||||
s.email = %q{seniorlopez@gmail.com}
|
||||
s.extensions = ["ext/extconf.rb"]
|
||||
s.extensions = ["ext/mysql2/extconf.rb"]
|
||||
s.extra_rdoc_files = [
|
||||
"README.rdoc"
|
||||
]
|
||||
|
@ -29,9 +29,9 @@ Gem::Specification.new do |s|
|
|||
"benchmark/sequel.rb",
|
||||
"benchmark/setup_db.rb",
|
||||
"examples/eventmachine.rb",
|
||||
"ext/extconf.rb",
|
||||
"ext/mysql2_ext.c",
|
||||
"ext/mysql2_ext.h",
|
||||
"ext/mysql2/extconf.rb",
|
||||
"ext/mysql2/mysql2_ext.c",
|
||||
"ext/mysql2/mysql2_ext.h",
|
||||
"lib/active_record/connection_adapters/mysql2_adapter.rb",
|
||||
"lib/arel/engines/sql/compilers/mysql2_compiler.rb",
|
||||
"lib/mysql2.rb",
|
||||
|
@ -50,7 +50,7 @@ Gem::Specification.new do |s|
|
|||
s.homepage = %q{http://github.com/brianmario/mysql2}
|
||||
s.rdoc_options = ["--charset=UTF-8"]
|
||||
s.require_paths = ["lib", "ext"]
|
||||
s.rubygems_version = %q{1.3.6}
|
||||
s.rubygems_version = %q{1.3.7}
|
||||
s.summary = %q{A simple, fast Mysql library for Ruby, binding to libmysql}
|
||||
s.test_files = [
|
||||
"spec/active_record/active_record_spec.rb",
|
||||
|
@ -66,7 +66,7 @@ Gem::Specification.new do |s|
|
|||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
||||
s.specification_version = 3
|
||||
|
||||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
else
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue