elia-mysql 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.
Files changed (10) hide show
  1. data/COPYING +56 -0
  2. data/COPYING.ja +51 -0
  3. data/README.html +1098 -0
  4. data/README_ja.html +1323 -0
  5. data/extconf.rb +75 -0
  6. data/mysql.c +2273 -0
  7. data/mysql.gemspec +22 -0
  8. data/test.rb +1450 -0
  9. data/tommy.css +134 -0
  10. metadata +64 -0
@@ -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,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: elia-mysql
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.8.1
5
+ platform: ruby
6
+ authors:
7
+ - TOMITA Masahiro
8
+ - Elia Schito
9
+ - Michael Platov
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+
14
+ date: 2009-02-01 00:00:00 -08:00
15
+ default_executable:
16
+ dependencies: []
17
+
18
+ description: MySQL API module for Ruby.
19
+ email:
20
+ - tommy@tmtm.org
21
+ executables: []
22
+
23
+ extensions:
24
+ - extconf.rb
25
+ extra_rdoc_files: []
26
+
27
+ files:
28
+ - COPYING
29
+ - COPYING.ja
30
+ - README.html
31
+ - README_ja.html
32
+ - extconf.rb
33
+ - mysql.c
34
+ - test.rb
35
+ - tommy.css
36
+ - mysql.gemspec
37
+ has_rdoc: false
38
+ homepage: http://www.tmtm.org/en/mysql/ruby/
39
+ post_install_message:
40
+ rdoc_options: []
41
+
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: 1.8.6
49
+ version:
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: "0"
55
+ version:
56
+ requirements: []
57
+
58
+ rubyforge_project:
59
+ rubygems_version: 1.2.0
60
+ signing_key:
61
+ specification_version: 2
62
+ summary: MySQL/Ruby provides the same functions for Ruby programs that the MySQL C API provides for C programs.
63
+ test_files: []
64
+