File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ MySQL connector for Ruby.
2020
2121* MySQL/Ruby 2.8.x とほぼ互換があります。
2222
23+ * MySQL 8.0 には対応していません。
24+
2325== Synopsis
2426
2527使用例:
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class Mysql
2121 rescue LoadError
2222 end
2323
24- VERSION = 20913 # Version number of this library
24+ VERSION = 21000 # Version number of this library
2525 MYSQL_UNIX_PORT = "/tmp/mysql.sock" # UNIX domain socket filename
2626 MYSQL_TCP_PORT = 3306 # TCP socket port number
2727
Original file line number Diff line number Diff line change 11Gem ::Specification . new do |s |
22 s . name = 'ruby-mysql-ext'
3- s . version = '2.9.14 '
3+ s . version = '2.10.0 '
44 s . summary = 'MySQL connector with extension'
55 s . authors = [ 'Tomita Masahiro' ]
6- s . date = '2015-12-30 '
6+ s . date = '2021-10-23 '
77 s . description = 'This is MySQL connector with C extension.'
8899 s . extensions = [ 'ext/mysql/extconf.rb' ]
Original file line number Diff line number Diff line change 11Gem ::Specification . new do |s |
22 s . name = 'ruby-mysql'
3- s . version = '2.9.14 '
3+ s . version = '2.10.0 '
44 s . summary = 'MySQL connector'
55 s . authors = [ 'Tomita Masahiro' ]
6- s . date = '2015-12-30 '
6+ s . date = '2021-10-23 '
77 s . description = 'This is MySQL connector. pure Ruby version'
8899 s . homepage = 'http://github.com/tmtm/ruby-mysql'
Original file line number Diff line number Diff line change 2020class TestMysql < Test ::Unit ::TestCase
2121 sub_test_case 'Mysql::VERSION' do
2222 test 'returns client version' do
23- assert { Mysql ::VERSION == 20913 }
23+ assert { Mysql ::VERSION == 21000 }
2424 end
2525 end
2626
You can’t perform that action at this time.
0 commit comments