mysql 2.7.1-mswin32
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/README +27 -0
- data/Rakefile +59 -0
- data/docs/README.html +1017 -0
- data/ext/extconf.rb +18 -0
- data/ext/extconf.rb.orig +67 -0
- data/ext/mysql.c.in +2184 -0
- data/ext/mysql.so +0 -0
- data/ext/test.rb +1367 -0
- metadata +57 -0
metadata
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: mysql
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 2.7.1
|
7
|
+
date: 2006-06-20 00:00:00 -06:00
|
8
|
+
summary: A win32-native build of the MySQL API module for Ruby.
|
9
|
+
require_paths:
|
10
|
+
- ext
|
11
|
+
email: kevin@bantamtech.com
|
12
|
+
homepage: http://mysql-win.rubyforge.org
|
13
|
+
rubyforge_project: mysql
|
14
|
+
description: A win32-native build of the MySQL API module for Ruby.
|
15
|
+
autorequire: mysql
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.8.2
|
24
|
+
version:
|
25
|
+
platform: mswin32
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
authors:
|
29
|
+
- Kevin Williams
|
30
|
+
files:
|
31
|
+
- docs
|
32
|
+
- ext/mysql.so
|
33
|
+
- ext/extconf.rb
|
34
|
+
- ext/extconf.rb.orig
|
35
|
+
- ext/mysql.c.in
|
36
|
+
- ext/test.rb
|
37
|
+
- README
|
38
|
+
- Rakefile
|
39
|
+
- docs/README.html
|
40
|
+
test_files: []
|
41
|
+
|
42
|
+
rdoc_options:
|
43
|
+
- --exclude
|
44
|
+
- ext
|
45
|
+
- --main
|
46
|
+
- README
|
47
|
+
extra_rdoc_files:
|
48
|
+
- README
|
49
|
+
- docs/README.html
|
50
|
+
executables: []
|
51
|
+
|
52
|
+
extensions: []
|
53
|
+
|
54
|
+
requirements: []
|
55
|
+
|
56
|
+
dependencies: []
|
57
|
+
|