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