mysql 2.9.0-x86-mswin32-60
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemtest +0 -0
- data/COPYING +56 -0
- data/COPYING.ja +51 -0
- data/History.txt +32 -0
- data/Manifest.txt +17 -0
- data/README.txt +25 -0
- data/Rakefile +22 -0
- data/ext/mysql_api/extconf.rb +93 -0
- data/ext/mysql_api/mysql.c +2288 -0
- data/extra/README.html +1108 -0
- data/extra/README_ja.html +1333 -0
- data/extra/tommy.css +134 -0
- data/lib/mysql.rb +9 -0
- data/lib/mysql/1.8/mysql_api.so +0 -0
- data/lib/mysql/1.9/mysql_api.so +0 -0
- data/lib/mysql/version.rb +6 -0
- data/tasks/gem.rake +24 -0
- data/tasks/native.rake +52 -0
- data/tasks/vendor_mysql.rake +42 -0
- data/test/test_mysql.rb +1492 -0
- metadata +160 -0
metadata
ADDED
@@ -0,0 +1,160 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mysql
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 43
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 2
|
8
|
+
- 9
|
9
|
+
- 0
|
10
|
+
version: 2.9.0
|
11
|
+
platform: x86-mswin32-60
|
12
|
+
authors:
|
13
|
+
- TOMITA Masahiro
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-11-17 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rdoc
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ~>
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 19
|
29
|
+
segments:
|
30
|
+
- 3
|
31
|
+
- 10
|
32
|
+
version: "3.10"
|
33
|
+
type: :development
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: rake-compiler
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ~>
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 61
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
- 8
|
47
|
+
- 1
|
48
|
+
version: 0.8.1
|
49
|
+
type: :development
|
50
|
+
version_requirements: *id002
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: hoe
|
53
|
+
prerelease: false
|
54
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ~>
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
hash: 5
|
60
|
+
segments:
|
61
|
+
- 3
|
62
|
+
- 1
|
63
|
+
version: "3.1"
|
64
|
+
type: :development
|
65
|
+
version_requirements: *id003
|
66
|
+
description: |-
|
67
|
+
This is the MySQL API module for Ruby. It provides the same functions for Ruby
|
68
|
+
programs that the MySQL C API provides for C programs.
|
69
|
+
|
70
|
+
This package is offered as gem for easy installation using RubyGems. It wraps
|
71
|
+
unmodified tmtm's mysql-ruby extension into a proper gem.
|
72
|
+
|
73
|
+
Please note that tmtm (Tomita Mashahiro) has deprecated development of this
|
74
|
+
extension and only update it for bug fixes.
|
75
|
+
email:
|
76
|
+
- tommy@tmtm.org
|
77
|
+
executables: []
|
78
|
+
|
79
|
+
extensions: []
|
80
|
+
|
81
|
+
extra_rdoc_files:
|
82
|
+
- History.txt
|
83
|
+
- Manifest.txt
|
84
|
+
- README.txt
|
85
|
+
files:
|
86
|
+
- COPYING
|
87
|
+
- COPYING.ja
|
88
|
+
- History.txt
|
89
|
+
- Manifest.txt
|
90
|
+
- README.txt
|
91
|
+
- Rakefile
|
92
|
+
- ext/mysql_api/extconf.rb
|
93
|
+
- ext/mysql_api/mysql.c
|
94
|
+
- extra/README.html
|
95
|
+
- extra/README_ja.html
|
96
|
+
- extra/tommy.css
|
97
|
+
- lib/mysql.rb
|
98
|
+
- lib/mysql/version.rb
|
99
|
+
- tasks/gem.rake
|
100
|
+
- tasks/native.rake
|
101
|
+
- tasks/vendor_mysql.rake
|
102
|
+
- test/test_mysql.rb
|
103
|
+
- .gemtest
|
104
|
+
- lib/mysql/1.8/mysql_api.so
|
105
|
+
- lib/mysql/1.9/mysql_api.so
|
106
|
+
homepage: http://github.com/luislavena/mysql-gem
|
107
|
+
licenses: []
|
108
|
+
|
109
|
+
post_install_message: |+
|
110
|
+
|
111
|
+
======================================================================================================
|
112
|
+
|
113
|
+
You've installed the binary version of mysql.
|
114
|
+
It was built using MySQL Connector/C version 6.0.2.
|
115
|
+
It's recommended to use the exact same version to avoid potential issues.
|
116
|
+
|
117
|
+
At the time of building this gem, the necessary DLL files where available
|
118
|
+
in the following URL:
|
119
|
+
|
120
|
+
http://dev.mysql.com/get/Downloads/Connector-C/mysql-connector-c-noinstall-6.0.2-win32.zip/from/pick
|
121
|
+
|
122
|
+
You can put the lib\libmysql.dll available in this package to your Ruby bin directory.
|
123
|
+
E.g. C:\Ruby\bin
|
124
|
+
|
125
|
+
======================================================================================================
|
126
|
+
|
127
|
+
rdoc_options:
|
128
|
+
- --main
|
129
|
+
- README.txt
|
130
|
+
require_paths:
|
131
|
+
- lib
|
132
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
133
|
+
none: false
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
hash: 57
|
138
|
+
segments:
|
139
|
+
- 1
|
140
|
+
- 8
|
141
|
+
- 7
|
142
|
+
version: 1.8.7
|
143
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
144
|
+
none: false
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
hash: 3
|
149
|
+
segments:
|
150
|
+
- 0
|
151
|
+
version: "0"
|
152
|
+
requirements: []
|
153
|
+
|
154
|
+
rubyforge_project: mysql-win
|
155
|
+
rubygems_version: 1.8.24
|
156
|
+
signing_key:
|
157
|
+
specification_version: 3
|
158
|
+
summary: This is the MySQL API module for Ruby
|
159
|
+
test_files:
|
160
|
+
- test/test_mysql.rb
|