mysql2 0.3.18-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +539 -0
- data/examples/eventmachine.rb +21 -0
- data/examples/threaded.rb +20 -0
- data/ext/mysql2/client.c +1416 -0
- data/ext/mysql2/client.h +56 -0
- data/ext/mysql2/extconf.rb +177 -0
- data/ext/mysql2/infile.c +122 -0
- data/ext/mysql2/infile.h +1 -0
- data/ext/mysql2/mysql2_ext.c +12 -0
- data/ext/mysql2/mysql2_ext.h +45 -0
- data/ext/mysql2/mysql_enc_name_to_ruby.h +168 -0
- data/ext/mysql2/mysql_enc_to_ruby.h +246 -0
- data/ext/mysql2/result.c +684 -0
- data/ext/mysql2/result.h +23 -0
- data/ext/mysql2/wait_for_single_fd.h +36 -0
- data/lib/mysql2.rb +64 -0
- data/lib/mysql2/2.0/mysql2.so +0 -0
- data/lib/mysql2/2.1/mysql2.so +0 -0
- data/lib/mysql2/client.rb +90 -0
- data/lib/mysql2/console.rb +5 -0
- data/lib/mysql2/em.rb +56 -0
- data/lib/mysql2/error.rb +80 -0
- data/lib/mysql2/mysql2.rb +2 -0
- data/lib/mysql2/result.rb +5 -0
- data/lib/mysql2/version.rb +3 -0
- data/spec/configuration.yml.example +17 -0
- data/spec/em/em_spec.rb +135 -0
- data/spec/my.cnf.example +9 -0
- data/spec/mysql2/client_spec.rb +897 -0
- data/spec/mysql2/error_spec.rb +83 -0
- data/spec/mysql2/result_spec.rb +505 -0
- data/spec/rcov.opts +3 -0
- data/spec/spec_helper.rb +87 -0
- data/spec/test_data +1 -0
- data/support/libmysql.def +219 -0
- data/support/mysql_enc_to_ruby.rb +82 -0
- data/support/ruby_enc_to_mysql.rb +61 -0
- data/vendor/README +654 -0
- data/vendor/libmysql.dll +0 -0
- metadata +149 -0
data/vendor/libmysql.dll
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,149 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mysql2
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.18
|
5
|
+
prerelease:
|
6
|
+
platform: x64-mingw32
|
7
|
+
authors:
|
8
|
+
- Brian Lopez
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-02-17 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake-compiler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.9.5
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.9.5
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 0.9.3
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 0.9.3
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rspec
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 2.8.0
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 2.8.0
|
62
|
+
description:
|
63
|
+
email: seniorlopez@gmail.com
|
64
|
+
executables: []
|
65
|
+
extensions: []
|
66
|
+
extra_rdoc_files: []
|
67
|
+
files:
|
68
|
+
- README.md
|
69
|
+
- examples/eventmachine.rb
|
70
|
+
- examples/threaded.rb
|
71
|
+
- ext/mysql2/client.c
|
72
|
+
- ext/mysql2/client.h
|
73
|
+
- ext/mysql2/extconf.rb
|
74
|
+
- ext/mysql2/infile.c
|
75
|
+
- ext/mysql2/infile.h
|
76
|
+
- ext/mysql2/mysql2_ext.c
|
77
|
+
- ext/mysql2/mysql2_ext.h
|
78
|
+
- ext/mysql2/mysql_enc_name_to_ruby.h
|
79
|
+
- ext/mysql2/mysql_enc_to_ruby.h
|
80
|
+
- ext/mysql2/result.c
|
81
|
+
- ext/mysql2/result.h
|
82
|
+
- ext/mysql2/wait_for_single_fd.h
|
83
|
+
- lib/mysql2.rb
|
84
|
+
- lib/mysql2/2.0/mysql2.so
|
85
|
+
- lib/mysql2/2.1/mysql2.so
|
86
|
+
- lib/mysql2/client.rb
|
87
|
+
- lib/mysql2/console.rb
|
88
|
+
- lib/mysql2/em.rb
|
89
|
+
- lib/mysql2/error.rb
|
90
|
+
- lib/mysql2/mysql2.rb
|
91
|
+
- lib/mysql2/result.rb
|
92
|
+
- lib/mysql2/version.rb
|
93
|
+
- spec/configuration.yml.example
|
94
|
+
- spec/em/em_spec.rb
|
95
|
+
- spec/my.cnf.example
|
96
|
+
- spec/mysql2/client_spec.rb
|
97
|
+
- spec/mysql2/error_spec.rb
|
98
|
+
- spec/mysql2/result_spec.rb
|
99
|
+
- spec/rcov.opts
|
100
|
+
- spec/spec_helper.rb
|
101
|
+
- spec/test_data
|
102
|
+
- support/libmysql.def
|
103
|
+
- support/mysql_enc_to_ruby.rb
|
104
|
+
- support/ruby_enc_to_mysql.rb
|
105
|
+
- vendor/README
|
106
|
+
- vendor/libmysql.dll
|
107
|
+
homepage: http://github.com/brianmario/mysql2
|
108
|
+
licenses:
|
109
|
+
- MIT
|
110
|
+
post_install_message: ! "\n======================================================================================================\n\n
|
111
|
+
\\ You've installed the binary version of mysql2.\n It was built using MySQL Connector/C
|
112
|
+
version 6.1.5.\n It's recommended to use the exact same version to avoid potential
|
113
|
+
issues.\n\n At the time of building this gem, the necessary DLL files were retrieved
|
114
|
+
from:\n http://cdn.mysql.com/Downloads/Connector-C/mysql-connector-c-6.1.5-winx64.zip\n\n
|
115
|
+
\\ This gem *includes* vendor/libmysql.dll with redistribution notice in vendor/README.\n\n======================================================================================================\n\n"
|
116
|
+
rdoc_options:
|
117
|
+
- --charset=UTF-8
|
118
|
+
require_paths:
|
119
|
+
- lib
|
120
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
|
+
none: false
|
128
|
+
requirements:
|
129
|
+
- - ! '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
requirements: []
|
133
|
+
rubyforge_project:
|
134
|
+
rubygems_version: 1.8.23
|
135
|
+
signing_key:
|
136
|
+
specification_version: 4
|
137
|
+
summary: A simple, fast Mysql library for Ruby, binding to libmysql
|
138
|
+
test_files:
|
139
|
+
- examples/eventmachine.rb
|
140
|
+
- examples/threaded.rb
|
141
|
+
- spec/configuration.yml.example
|
142
|
+
- spec/em/em_spec.rb
|
143
|
+
- spec/my.cnf.example
|
144
|
+
- spec/mysql2/client_spec.rb
|
145
|
+
- spec/mysql2/error_spec.rb
|
146
|
+
- spec/mysql2/result_spec.rb
|
147
|
+
- spec/rcov.opts
|
148
|
+
- spec/spec_helper.rb
|
149
|
+
- spec/test_data
|