ruby-mysql 2.9.0
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/ChangeLog +3 -0
- data/README.rdoc +68 -0
- data/lib/mysql.rb +1080 -0
- data/lib/mysql/charset.rb +255 -0
- data/lib/mysql/constants.rb +164 -0
- data/lib/mysql/error.rb +518 -0
- data/lib/mysql/protocol.rb +710 -0
- metadata +73 -0
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-mysql
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.9.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- tommy
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-07-29 00:00:00 +09:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: MySQL connector for Ruby
|
17
|
+
email: tommy@tmtm.org
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.rdoc
|
24
|
+
- ChangeLog
|
25
|
+
files:
|
26
|
+
- README.rdoc
|
27
|
+
- ChangeLog
|
28
|
+
- lib/mysql.rb
|
29
|
+
- lib/mysql/constants.rb
|
30
|
+
- lib/mysql/protocol.rb
|
31
|
+
- lib/mysql/charset.rb
|
32
|
+
- lib/mysql/error.rb
|
33
|
+
has_rdoc: true
|
34
|
+
homepage: http://github.com/tmtm/ruby-mysql
|
35
|
+
licenses: []
|
36
|
+
|
37
|
+
post_install_message:
|
38
|
+
rdoc_options:
|
39
|
+
- --title
|
40
|
+
- ruby-mysql documentation
|
41
|
+
- --charset
|
42
|
+
- utf-8
|
43
|
+
- --opname
|
44
|
+
- index.html
|
45
|
+
- --line-numbers
|
46
|
+
- --main
|
47
|
+
- README
|
48
|
+
- --inline-source
|
49
|
+
- --exclude
|
50
|
+
- ^(examples|extras)/
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 1.8.7
|
58
|
+
version:
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: "0"
|
64
|
+
version:
|
65
|
+
requirements: []
|
66
|
+
|
67
|
+
rubyforge_project: rubymysql
|
68
|
+
rubygems_version: 1.3.5
|
69
|
+
signing_key:
|
70
|
+
specification_version: 2
|
71
|
+
summary: MySQL connector for Ruby
|
72
|
+
test_files: []
|
73
|
+
|