sam-mysql-ruby 2.8.1
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.
- data/COPYING +56 -0
- data/COPYING.ja +51 -0
- data/README.html +1098 -0
- data/README_ja.html +1323 -0
- data/ext/extconf.rb +113 -0
- data/ext/mysql.c +2297 -0
- data/mysql-ruby.gemspec +35 -0
- data/setup.rb +1585 -0
- data/test.rb +1453 -0
- data/tommy.css +134 -0
- metadata +68 -0
data/tommy.css
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
body {
|
2
|
+
color: black;
|
3
|
+
background: white;
|
4
|
+
margin-left: 10%;
|
5
|
+
margin-right: 10%;
|
6
|
+
}
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
color: white;
|
10
|
+
background: #08d;
|
11
|
+
width: 100%;
|
12
|
+
}
|
13
|
+
|
14
|
+
h1 a {
|
15
|
+
color: white;
|
16
|
+
}
|
17
|
+
|
18
|
+
h1 a:link {
|
19
|
+
}
|
20
|
+
|
21
|
+
h1 a:visited {
|
22
|
+
color: white;
|
23
|
+
}
|
24
|
+
|
25
|
+
h1 a:hover {
|
26
|
+
}
|
27
|
+
|
28
|
+
h2 {
|
29
|
+
width: 100%;
|
30
|
+
border: thin #0cc;
|
31
|
+
border-style: solid none;
|
32
|
+
background: #cff;
|
33
|
+
}
|
34
|
+
|
35
|
+
h3 {
|
36
|
+
width: 100%;
|
37
|
+
border: thin #0cc;
|
38
|
+
border-style: none none solid;
|
39
|
+
background: #eff;
|
40
|
+
}
|
41
|
+
|
42
|
+
h4 {
|
43
|
+
border: thin #0cc;
|
44
|
+
border-style: none none solid;
|
45
|
+
}
|
46
|
+
|
47
|
+
dt {
|
48
|
+
font-weight: bold;
|
49
|
+
}
|
50
|
+
|
51
|
+
dd {
|
52
|
+
margin-bottom: 3ex;
|
53
|
+
}
|
54
|
+
|
55
|
+
table {
|
56
|
+
border-collapse: collapse;
|
57
|
+
border: thin solid;
|
58
|
+
}
|
59
|
+
|
60
|
+
tr,th,td {
|
61
|
+
border: thin solid;
|
62
|
+
padding: 3px;
|
63
|
+
}
|
64
|
+
|
65
|
+
th {
|
66
|
+
background-color: #00ffff;
|
67
|
+
}
|
68
|
+
|
69
|
+
td {
|
70
|
+
background-color: #eeeeee;
|
71
|
+
}
|
72
|
+
|
73
|
+
div.intro {
|
74
|
+
margin-right: 10%;
|
75
|
+
margin-left: 10%;
|
76
|
+
font-size: 90%;
|
77
|
+
}
|
78
|
+
|
79
|
+
div.code {
|
80
|
+
margin-left: 10%;
|
81
|
+
color: white;
|
82
|
+
background: black;
|
83
|
+
border: thin inset;
|
84
|
+
padding: 4px;
|
85
|
+
}
|
86
|
+
|
87
|
+
div.code2 {
|
88
|
+
margin-left: 10%;
|
89
|
+
color: white;
|
90
|
+
background: darkgreen;
|
91
|
+
border: thin inset;
|
92
|
+
padding: 4px;
|
93
|
+
}
|
94
|
+
|
95
|
+
pre {
|
96
|
+
margin: 20px;
|
97
|
+
padding: 4px;
|
98
|
+
border: #363 inset;
|
99
|
+
color: #fff;
|
100
|
+
background: #232;
|
101
|
+
width: 80%;
|
102
|
+
}
|
103
|
+
|
104
|
+
|
105
|
+
/*
|
106
|
+
a {
|
107
|
+
background: #eee;
|
108
|
+
}
|
109
|
+
*/
|
110
|
+
|
111
|
+
a:link {
|
112
|
+
color: #008;
|
113
|
+
}
|
114
|
+
|
115
|
+
a:visited {
|
116
|
+
color: black;
|
117
|
+
}
|
118
|
+
|
119
|
+
a:hover {
|
120
|
+
background: #fcc;
|
121
|
+
}
|
122
|
+
|
123
|
+
.red {
|
124
|
+
color: red;
|
125
|
+
}
|
126
|
+
|
127
|
+
.notice {
|
128
|
+
font-weight: bold;
|
129
|
+
background: #f88;
|
130
|
+
}
|
131
|
+
|
132
|
+
.input {
|
133
|
+
font-weight:bold;
|
134
|
+
}
|
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sam-mysql-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.8.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Masahiro TOMITA
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-09-29 00:00:00 +10:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: |
|
17
|
+
This is the MySQL API module for Ruby. It provides the same functions for Ruby
|
18
|
+
programs that the MySQL C API provides for C programs.
|
19
|
+
Some small mods by http://github.com/lsegal/mysql-ruby for ruby 1.9.1 support for utf-8
|
20
|
+
|
21
|
+
email: tommy.(at).tmtm.org
|
22
|
+
executables: []
|
23
|
+
|
24
|
+
extensions:
|
25
|
+
- ext/extconf.rb
|
26
|
+
extra_rdoc_files: []
|
27
|
+
|
28
|
+
files:
|
29
|
+
- COPYING
|
30
|
+
- COPYING.ja
|
31
|
+
- README.html
|
32
|
+
- README_ja.html
|
33
|
+
- ext/extconf.rb
|
34
|
+
- ext/mysql.c
|
35
|
+
- setup.rb
|
36
|
+
- test.rb
|
37
|
+
- tommy.css
|
38
|
+
- mysql-ruby.gemspec
|
39
|
+
has_rdoc: true
|
40
|
+
homepage: http://www.tmtm.org/mysql/ruby/
|
41
|
+
licenses: []
|
42
|
+
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: "0"
|
53
|
+
version:
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: "0"
|
59
|
+
version:
|
60
|
+
requirements: []
|
61
|
+
|
62
|
+
rubyforge_project: mysql-ruby
|
63
|
+
rubygems_version: 1.3.5
|
64
|
+
signing_key:
|
65
|
+
specification_version: 3
|
66
|
+
summary: MySQL driver for Ruby
|
67
|
+
test_files: []
|
68
|
+
|