fauna-mysql 2.8.1.1 → 2.8.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +6 -0
- data/Manifest +19 -0
- data/Rakefile +19 -9
- data/ext/mysql_api/mysql.c +27 -0
- data/ext/mysql_api/mysql.c.orig +2273 -0
- data/fauna-mysql.gemspec +34 -0
- data/mysql.gemspec +99 -0
- metadata +77 -46
- metadata.gz.sig +0 -0
- data/History.txt +0 -12
data/fauna-mysql.gemspec
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{fauna-mysql}
|
5
|
+
s.version = "2.8.1.2"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Evan Weaver"]
|
9
|
+
s.cert_chain = ["/Users/eweaver/p/configuration/gem_certificates/evan_weaver-original-public_cert.pem"]
|
10
|
+
s.date = %q{2010-10-28}
|
11
|
+
s.description = %q{The MySQL API module for Ruby, with Twitter fixes.}
|
12
|
+
s.email = %q{}
|
13
|
+
s.extensions = ["ext/mysql_api/extconf.rb"]
|
14
|
+
s.extra_rdoc_files = ["CHANGELOG", "COPYING", "ext/mysql_api/extconf.rb", "ext/mysql_api/mysql.c", "ext/mysql_api/mysql.c.orig", "extra/README.html", "extra/README_ja.html", "extra/tommy.css", "lib/mysql.rb", "README.txt", "tasks/gem.rake", "tasks/native.rake", "tasks/vendor_mysql.rake"]
|
15
|
+
s.files = ["CHANGELOG", "COPYING", "COPYING.ja", "ext/mysql_api/extconf.rb", "ext/mysql_api/mysql.c", "ext/mysql_api/mysql.c.orig", "extra/README.html", "extra/README_ja.html", "extra/tommy.css", "lib/mysql.rb", "Manifest.txt", "mysql.gemspec", "Rakefile", "README.txt", "tasks/gem.rake", "tasks/native.rake", "tasks/vendor_mysql.rake", "test/test_mysql.rb", "Manifest", "fauna-mysql.gemspec"]
|
16
|
+
s.homepage = %q{http://blog.evanweaver.com/files/doc/fauna/mysql/}
|
17
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Fauna-mysql", "--main", "README.txt"]
|
18
|
+
s.require_paths = ["lib", "ext"]
|
19
|
+
s.rubyforge_project = %q{fauna}
|
20
|
+
s.rubygems_version = %q{1.3.7}
|
21
|
+
s.signing_key = %q{/Users/eweaver/p/configuration/gem_certificates/evan_weaver-original-private_key.pem}
|
22
|
+
s.summary = %q{The MySQL API module for Ruby, with Twitter fixes.}
|
23
|
+
s.test_files = ["test/test_mysql.rb"]
|
24
|
+
|
25
|
+
if s.respond_to? :specification_version then
|
26
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
27
|
+
s.specification_version = 3
|
28
|
+
|
29
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
30
|
+
else
|
31
|
+
end
|
32
|
+
else
|
33
|
+
end
|
34
|
+
end
|
data/mysql.gemspec
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mysql
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.8.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- TOMITA Masahiro
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-08-20 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake-compiler
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ~>
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0.5"
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: hoe
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.3.3
|
34
|
+
version:
|
35
|
+
description: |-
|
36
|
+
This is the MySQL API module for Ruby. It provides the same functions for Ruby
|
37
|
+
programs that the MySQL C API provides for C programs.
|
38
|
+
|
39
|
+
This is a conversion of tmtm's original extension into a proper RubyGems.
|
40
|
+
email:
|
41
|
+
- tommy@tmtm.org
|
42
|
+
executables: []
|
43
|
+
|
44
|
+
extensions:
|
45
|
+
- ext/mysql_api/extconf.rb
|
46
|
+
extra_rdoc_files:
|
47
|
+
- History.txt
|
48
|
+
- Manifest.txt
|
49
|
+
- README.txt
|
50
|
+
files:
|
51
|
+
- COPYING
|
52
|
+
- COPYING.ja
|
53
|
+
- History.txt
|
54
|
+
- Manifest.txt
|
55
|
+
- README.txt
|
56
|
+
- Rakefile
|
57
|
+
- ext/mysql_api/extconf.rb
|
58
|
+
- ext/mysql_api/mysql.c
|
59
|
+
- extra/README.html
|
60
|
+
- extra/README_ja.html
|
61
|
+
- extra/tommy.css
|
62
|
+
- lib/mysql.rb
|
63
|
+
- tasks/gem.rake
|
64
|
+
- tasks/native.rake
|
65
|
+
- tasks/vendor_mysql.rake
|
66
|
+
- test/test_mysql.rb
|
67
|
+
has_rdoc: true
|
68
|
+
homepage: http://mysql-win.rubyforge.org
|
69
|
+
licenses: []
|
70
|
+
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options:
|
73
|
+
- --main
|
74
|
+
- README.txt
|
75
|
+
require_paths:
|
76
|
+
- lib
|
77
|
+
- ext
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.8.6
|
83
|
+
version:
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: "0"
|
89
|
+
version:
|
90
|
+
requirements: []
|
91
|
+
|
92
|
+
rubyforge_project: mysql-win
|
93
|
+
rubygems_version: 1.3.4
|
94
|
+
signing_key:
|
95
|
+
specification_version: 3
|
96
|
+
summary: This is the MySQL API module for Ruby
|
97
|
+
test_files:
|
98
|
+
- test/test_mysql.rb
|
99
|
+
|
metadata
CHANGED
@@ -1,96 +1,127 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fauna-mysql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 47
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 2
|
8
|
+
- 8
|
9
|
+
- 1
|
10
|
+
- 2
|
11
|
+
version: 2.8.1.2
|
5
12
|
platform: ruby
|
6
13
|
authors:
|
7
|
-
-
|
14
|
+
- Evan Weaver
|
8
15
|
autorequire:
|
9
16
|
bindir: bin
|
10
|
-
cert_chain:
|
17
|
+
cert_chain:
|
18
|
+
- |
|
19
|
+
-----BEGIN CERTIFICATE-----
|
20
|
+
MIIDLjCCAhagAwIBAgIBADANBgkqhkiG9w0BAQUFADA9MQ0wCwYDVQQDDARldmFu
|
21
|
+
MRgwFgYKCZImiZPyLGQBGRYIY2xvdWRidXIxEjAQBgoJkiaJk/IsZAEZFgJzdDAe
|
22
|
+
Fw0wNzA5MTYxMDMzMDBaFw0wODA5MTUxMDMzMDBaMD0xDTALBgNVBAMMBGV2YW4x
|
23
|
+
GDAWBgoJkiaJk/IsZAEZFghjbG91ZGJ1cjESMBAGCgmSJomT8ixkARkWAnN0MIIB
|
24
|
+
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5C0Io89nyApnr+PvbNFge9Vs
|
25
|
+
yRWAlGBUEMahpXp28VrrfXZT0rAW7JBo4PlCE3jl4nE4dzE6gAdItSycjTosrw7A
|
26
|
+
Ir5+xoyl4Vb35adv56TIQQXvNz+BzlqnkAY5JN0CSBRTQb6mxS3hFyD/h4qgDosj
|
27
|
+
R2RFVzHqSxCS8xq4Ny8uzOwOi+Xyu4w67fI5JvnPvMxqrlR1eaIQHmxnf76RzC46
|
28
|
+
QO5QhufjAYGGXd960XzbQsQyTDUYJzrvT7AdOfiyZzKQykKt8dEpDn+QPjFTnGnT
|
29
|
+
QmgJBX5WJN0lHF2l1sbv3gh4Kn1tZu+kTUqeXY6ShAoDTyvZRiFqQdwh8w2lTQID
|
30
|
+
AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU+WqJz3xQ
|
31
|
+
XSea1hRvvHWcIMgeeC4wDQYJKoZIhvcNAQEFBQADggEBAGLZ75jfOEW8Nsl26CTt
|
32
|
+
JFrWxQTcQT/UljeefVE3xYr7lc9oQjbqO3FOyued3qW7TaNEtZfSHoYeUSMYbpw1
|
33
|
+
XAwocIPuSRFDGM4B+hgQGVDx8PMGiJKom4qLXjO40UZsR7QyN/u869Vj45LURm6h
|
34
|
+
MBcPeqCASI+WNprj9+uZa2kmHiitrFqqfMBNlm5IFbn9XeYSta9AHVvs5QQqV2m5
|
35
|
+
hIPfLqCyxsn/YgOGvo6iwyQTWyTswamaAC3HRWZxIS1sfn/Ssqa7E7oQMkv5FAXr
|
36
|
+
x5rKePfXINf8XTJczkl9OBEYdE9aNdJsJpXD0asLgGVwBICS5Bjohp6mizJcDC1+
|
37
|
+
yZ0=
|
38
|
+
-----END CERTIFICATE-----
|
11
39
|
|
12
|
-
date:
|
40
|
+
date: 2010-10-28 00:00:00 -07:00
|
13
41
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ~>
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "0.5"
|
24
|
-
version:
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
name: hoe
|
27
|
-
type: :development
|
28
|
-
version_requirement:
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 2.3.3
|
34
|
-
version:
|
35
|
-
description: |-
|
36
|
-
This is the MySQL API module for Ruby. It provides the same functions for Ruby
|
37
|
-
programs that the MySQL C API provides for C programs.
|
38
|
-
|
39
|
-
This is a conversion of tmtm's original extension into a proper RubyGems.
|
40
|
-
email:
|
41
|
-
- tommy@tmtm.org
|
42
|
+
dependencies: []
|
43
|
+
|
44
|
+
description: The MySQL API module for Ruby, with Twitter fixes.
|
45
|
+
email: ""
|
42
46
|
executables: []
|
43
47
|
|
44
48
|
extensions:
|
45
49
|
- ext/mysql_api/extconf.rb
|
46
50
|
extra_rdoc_files:
|
47
|
-
-
|
48
|
-
-
|
51
|
+
- CHANGELOG
|
52
|
+
- COPYING
|
53
|
+
- ext/mysql_api/extconf.rb
|
54
|
+
- ext/mysql_api/mysql.c
|
55
|
+
- ext/mysql_api/mysql.c.orig
|
56
|
+
- extra/README.html
|
57
|
+
- extra/README_ja.html
|
58
|
+
- extra/tommy.css
|
59
|
+
- lib/mysql.rb
|
49
60
|
- README.txt
|
61
|
+
- tasks/gem.rake
|
62
|
+
- tasks/native.rake
|
63
|
+
- tasks/vendor_mysql.rake
|
50
64
|
files:
|
65
|
+
- CHANGELOG
|
51
66
|
- COPYING
|
52
67
|
- COPYING.ja
|
53
|
-
- History.txt
|
54
|
-
- Manifest.txt
|
55
|
-
- README.txt
|
56
|
-
- Rakefile
|
57
68
|
- ext/mysql_api/extconf.rb
|
58
69
|
- ext/mysql_api/mysql.c
|
70
|
+
- ext/mysql_api/mysql.c.orig
|
59
71
|
- extra/README.html
|
60
72
|
- extra/README_ja.html
|
61
73
|
- extra/tommy.css
|
62
74
|
- lib/mysql.rb
|
75
|
+
- Manifest.txt
|
76
|
+
- mysql.gemspec
|
77
|
+
- Rakefile
|
78
|
+
- README.txt
|
63
79
|
- tasks/gem.rake
|
64
80
|
- tasks/native.rake
|
65
81
|
- tasks/vendor_mysql.rake
|
66
82
|
- test/test_mysql.rb
|
83
|
+
- Manifest
|
84
|
+
- fauna-mysql.gemspec
|
67
85
|
has_rdoc: true
|
68
|
-
homepage: http://
|
86
|
+
homepage: http://blog.evanweaver.com/files/doc/fauna/mysql/
|
87
|
+
licenses: []
|
88
|
+
|
69
89
|
post_install_message:
|
70
90
|
rdoc_options:
|
91
|
+
- --line-numbers
|
92
|
+
- --inline-source
|
93
|
+
- --title
|
94
|
+
- Fauna-mysql
|
71
95
|
- --main
|
72
96
|
- README.txt
|
73
97
|
require_paths:
|
74
98
|
- lib
|
75
99
|
- ext
|
76
100
|
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
77
102
|
requirements:
|
78
103
|
- - ">="
|
79
104
|
- !ruby/object:Gem::Version
|
80
|
-
|
81
|
-
|
105
|
+
hash: 3
|
106
|
+
segments:
|
107
|
+
- 0
|
108
|
+
version: "0"
|
82
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
none: false
|
83
111
|
requirements:
|
84
112
|
- - ">="
|
85
113
|
- !ruby/object:Gem::Version
|
86
|
-
|
87
|
-
|
114
|
+
hash: 11
|
115
|
+
segments:
|
116
|
+
- 1
|
117
|
+
- 2
|
118
|
+
version: "1.2"
|
88
119
|
requirements: []
|
89
120
|
|
90
|
-
rubyforge_project:
|
91
|
-
rubygems_version: 1.
|
121
|
+
rubyforge_project: fauna
|
122
|
+
rubygems_version: 1.3.7
|
92
123
|
signing_key:
|
93
124
|
specification_version: 3
|
94
|
-
summary:
|
125
|
+
summary: The MySQL API module for Ruby, with Twitter fixes.
|
95
126
|
test_files:
|
96
127
|
- test/test_mysql.rb
|
metadata.gz.sig
ADDED
Binary file
|
data/History.txt
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
=== 2.8.1 / 2009-08-21
|
2
|
-
|
3
|
-
* New features:
|
4
|
-
* Early support for Ruby 1.9
|
5
|
-
|
6
|
-
* Enhancements:
|
7
|
-
* Improved gem release process using Hoe as development dependency
|
8
|
-
* Implemented support for cross compilation
|
9
|
-
* Binary version built against MySQL 5.0.83
|
10
|
-
|
11
|
-
* Bug fixes:
|
12
|
-
* Improved detection of mysql and it's configuration (mysql_config)
|