eejjjj82-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.
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 +71 -0
  6. data/mysql-ruby.gemspec +26 -0
  7. data/mysql.c +2273 -0
  8. data/test.rb +1450 -0
  9. data/tommy.css +134 -0
  10. metadata +61 -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,61 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eejjjj82-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: 2009-02-25 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: tommy@tmtm.org
18
+ executables: []
19
+
20
+ extensions:
21
+ - extconf.rb
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - COPYING
26
+ - COPYING.ja
27
+ - README.html
28
+ - README_ja.html
29
+ - extconf.rb
30
+ - mysql.c
31
+ - test.rb
32
+ - tommy.css
33
+ - mysql-ruby.gemspec
34
+ has_rdoc: false
35
+ homepage: http://www.tmtm.org/en/mysql/ruby/
36
+ post_install_message:
37
+ rdoc_options: []
38
+
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ version:
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: "0"
52
+ version:
53
+ requirements: []
54
+
55
+ rubyforge_project: mysql-ruby
56
+ rubygems_version: 1.2.0
57
+ signing_key:
58
+ specification_version: 2
59
+ summary: MySQL/Ruby provides the same functions for Ruby programs that the MySQL C API provides for C programs.
60
+ test_files:
61
+ - test.rb