ruby-mysql 2.9.4 → 2.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ruby-mysql might be problematic. Click here for more details.
- data/lib/mysql.rb +24 -15
- data/lib/mysql/charset.rb +2 -0
- data/lib/mysql/error.rb +2 -2
- data/lib/mysql/protocol.rb +13 -4
- data/spec/mysql_spec.rb +1679 -0
- metadata +32 -61
- data/ChangeLog +0 -58
metadata
CHANGED
@@ -1,84 +1,55 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-mysql
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 2
|
7
|
-
- 9
|
8
|
-
- 4
|
9
|
-
version: 2.9.4
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.9.5
|
5
|
+
prerelease:
|
10
6
|
platform: ruby
|
11
|
-
authors:
|
12
|
-
-
|
7
|
+
authors:
|
8
|
+
- Tomita Masahiro
|
13
9
|
autorequire:
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
|
-
|
17
|
-
date: 2010-12-29 00:00:00 +09:00
|
18
|
-
default_executable:
|
12
|
+
date: 2012-04-16 00:00:00.000000000 Z
|
19
13
|
dependencies: []
|
20
|
-
|
21
|
-
description: MySQL connector for Ruby
|
14
|
+
description: This is pure Ruby MySQL connector.
|
22
15
|
email: tommy@tmtm.org
|
23
16
|
executables: []
|
24
|
-
|
25
17
|
extensions: []
|
26
|
-
|
27
|
-
extra_rdoc_files:
|
18
|
+
extra_rdoc_files:
|
28
19
|
- README.rdoc
|
29
|
-
|
30
|
-
files:
|
20
|
+
files:
|
31
21
|
- README.rdoc
|
32
|
-
- ChangeLog
|
33
22
|
- lib/mysql.rb
|
34
23
|
- lib/mysql/constants.rb
|
35
24
|
- lib/mysql/protocol.rb
|
36
25
|
- lib/mysql/charset.rb
|
37
26
|
- lib/mysql/error.rb
|
38
|
-
|
27
|
+
- spec/mysql_spec.rb
|
39
28
|
homepage: http://github.com/tmtm/ruby-mysql
|
40
|
-
licenses:
|
41
|
-
|
29
|
+
licenses:
|
30
|
+
- Ruby's
|
42
31
|
post_install_message:
|
43
|
-
rdoc_options:
|
44
|
-
|
45
|
-
- ruby-mysql documentation
|
46
|
-
- --charset
|
47
|
-
- utf-8
|
48
|
-
- --opname
|
49
|
-
- index.html
|
50
|
-
- --line-numbers
|
51
|
-
- --main
|
52
|
-
- README
|
53
|
-
- --inline-source
|
54
|
-
- --exclude
|
55
|
-
- ^(examples|extras)/
|
56
|
-
require_paths:
|
32
|
+
rdoc_options: []
|
33
|
+
require_paths:
|
57
34
|
- lib
|
58
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
36
|
none: false
|
60
|
-
requirements:
|
61
|
-
- -
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
|
64
|
-
|
65
|
-
- 8
|
66
|
-
- 7
|
67
|
-
version: 1.8.7
|
68
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
42
|
none: false
|
70
|
-
requirements:
|
71
|
-
- -
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
|
74
|
-
- 0
|
75
|
-
version: "0"
|
43
|
+
requirements:
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
76
47
|
requirements: []
|
77
|
-
|
78
|
-
|
79
|
-
rubygems_version: 1.3.7
|
48
|
+
rubyforge_project:
|
49
|
+
rubygems_version: 1.8.11
|
80
50
|
signing_key:
|
81
|
-
specification_version:
|
82
|
-
summary: MySQL connector
|
83
|
-
test_files:
|
84
|
-
|
51
|
+
specification_version: 3
|
52
|
+
summary: pure Ruby MySQL connector
|
53
|
+
test_files:
|
54
|
+
- spec/mysql_spec.rb
|
55
|
+
has_rdoc: true
|
data/ChangeLog
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
2011-01-02 TOMITA Masahiro <tommy@tmtm.org>
|
2
|
-
|
3
|
-
* .autotest, .rspec: for autotest.
|
4
|
-
|
5
|
-
2010-12-31 TOMITA Masahiro <tommy@tmtm.org>
|
6
|
-
|
7
|
-
* lib/mysql.rb: add Mysql#close! method.
|
8
|
-
|
9
|
-
2010-12-30 TOMITA Masahiro <tommy@tmtm.org>
|
10
|
-
|
11
|
-
* lib/mysql/protocol.rb: raise ClientError::ServerGoneError when
|
12
|
-
connection is disconnected.
|
13
|
-
|
14
|
-
2010-12-29 TOMITA Masahiro <tommy@tmtm.org>
|
15
|
-
|
16
|
-
* lib/mysql/error.rb: add Mysql::ServerError::<Error> and
|
17
|
-
Mysql::ClientError::<Error> class.
|
18
|
-
|
19
|
-
* spec/mysql_spec.rb: for RSpec 2
|
20
|
-
|
21
|
-
* lib/mysql/charset.rb: add utf8mb4 charset.
|
22
|
-
|
23
|
-
2010-12-19 TOMITA Masahiro <tommy@tmtm.org>
|
24
|
-
|
25
|
-
* lib/mysql/protocol.rb: Fix: error 'Mysql::ProtocolError Invalid
|
26
|
-
packet: f1...' occurred on MySQL 5.5
|
27
|
-
|
28
|
-
2010-06-06 TOMITA Masahiro <tommy@tmtm.org>
|
29
|
-
|
30
|
-
* lib/mysql/charset.rb: support tis620 charset.
|
31
|
-
|
32
|
-
* lib/mysql/charset.rb, lib/mysql/protocol.rb: convert encoding to
|
33
|
-
Encoding.default_internal.
|
34
|
-
|
35
|
-
2010-05-06 TOMITA Masahiro <tommy@tmtm.org>
|
36
|
-
|
37
|
-
* lib/mysql.rb (Mysql#connect): Fix: Mysql.connect ignore flag.
|
38
|
-
|
39
|
-
* spec/mysql_spec.rb: use environment variables for MySQL
|
40
|
-
connection.
|
41
|
-
|
42
|
-
2010-01-17 TOMITA Masahiro <tommy@tmtm.org>
|
43
|
-
|
44
|
-
* lib/mysql.rb (Mysql#errno): Fix: Mysql#errno's default value
|
45
|
-
should be 0.
|
46
|
-
|
47
|
-
2010-01-16 TOMITA Masahiro <tommy@tmtm.org>
|
48
|
-
|
49
|
-
* lib/mysql.rb (Mysql#escape_string): raise error for unsafe
|
50
|
-
multibyte charset
|
51
|
-
|
52
|
-
2010-01-15 TOMITA Masahiro <tommy@tmtm.org>
|
53
|
-
|
54
|
-
* Fix: When GC destroy Mysql::Stmt object, protocol error occurred
|
55
|
-
|
56
|
-
2010-01-10 TOMITA Masahiro <tommy@tmtm.org>
|
57
|
-
|
58
|
-
* Version 2.9.0-beta
|