do_mysql 0.10.0-x86-mswin32-60 → 0.10.1-x86-mswin32-60
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/ChangeLog.markdown +27 -0
- data/LICENSE +1 -1
- data/README.markdown +104 -3
- data/Rakefile +56 -9
- data/ext/do_mysql/compat.h +55 -0
- data/ext/{do_mysql_ext/do_mysql_ext.c → do_mysql/do_mysql.c} +34 -57
- data/ext/{do_mysql_ext → do_mysql}/error.h +0 -0
- data/ext/{do_mysql_ext → do_mysql}/extconf.rb +15 -8
- data/lib/do_mysql.rb +27 -11
- data/lib/do_mysql/1.8/do_mysql.so +0 -0
- data/lib/do_mysql/1.9/do_mysql.so +0 -0
- data/lib/do_mysql/version.rb +1 -1
- data/spec/command_spec.rb +2 -2
- data/spec/connection_spec.rb +16 -14
- data/spec/encoding_spec.rb +2 -1
- data/spec/reader_spec.rb +1 -1
- data/spec/result_spec.rb +3 -3
- data/spec/spec_helper.rb +21 -31
- data/spec/typecast/array_spec.rb +1 -1
- data/spec/typecast/bigdecimal_spec.rb +2 -2
- data/spec/typecast/boolean_spec.rb +2 -2
- data/spec/typecast/byte_array_spec.rb +1 -1
- data/spec/typecast/class_spec.rb +1 -1
- data/spec/typecast/date_spec.rb +2 -2
- data/spec/typecast/datetime_spec.rb +2 -2
- data/spec/typecast/float_spec.rb +2 -2
- data/spec/typecast/integer_spec.rb +1 -1
- data/spec/typecast/nil_spec.rb +3 -3
- data/spec/typecast/other_spec.rb +8 -0
- data/spec/typecast/range_spec.rb +1 -1
- data/spec/typecast/string_spec.rb +1 -1
- data/spec/typecast/time_spec.rb +1 -1
- data/tasks/compile.rake +65 -0
- data/tasks/release.rake +12 -71
- data/tasks/retrieve.rake +1 -1
- data/tasks/spec.rake +19 -15
- metadata +65 -38
- data/HISTORY.markdown +0 -17
- data/Manifest.txt +0 -32
- data/lib/do_mysql_ext.so +0 -0
- data/spec/lib/rspec_immediate_feedback_formatter.rb +0 -3
- data/tasks/gem.rake +0 -8
- data/tasks/install.rake +0 -15
- data/tasks/native.rake +0 -31
data/tasks/release.rake
CHANGED
@@ -1,75 +1,16 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
desc 'Builds all gems (native, binaries for JRuby and Windows)'
|
2
|
+
task :build_all do
|
3
|
+
`rake clean`
|
4
|
+
`rake build`
|
5
|
+
`rake java gem`
|
6
|
+
`rake cross native gem RUBY_CC_VERSION=1.8.6:1.9.1`
|
6
7
|
end
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
# compare versions to avoid mistakes
|
15
|
-
unless ver == GEM_SPEC.version.to_s then
|
16
|
-
fail "Version mismatch (supplied and specification versions differ)."
|
17
|
-
end
|
18
|
-
|
19
|
-
# no rubyforge project? no release for you!
|
20
|
-
if GEM_SPEC.rubyforge_project == 'TODO' or GEM_SPEC.rubyforge_project.nil? then
|
21
|
-
fail "Must define rubyforge_project in your gem specification."
|
22
|
-
end
|
23
|
-
|
24
|
-
# instantiate a RubyForge object
|
25
|
-
rf = RubyForge.new
|
26
|
-
|
27
|
-
# read project info and overview
|
28
|
-
notes = begin
|
29
|
-
r = File.read("README.markdown")
|
30
|
-
r.split(/^(.*\n\-+)/)[1..4].join.strip
|
31
|
-
rescue
|
32
|
-
warn "Missing README.markdown"
|
33
|
-
''
|
34
|
-
end
|
35
|
-
|
36
|
-
# read changes
|
37
|
-
changes = begin
|
38
|
-
h = File.read("HISTORY.markdown")
|
39
|
-
h.split(/^(##+ .*)/)[1..2].join.strip
|
40
|
-
rescue
|
41
|
-
warn "Missing HISTORY.markdown"
|
42
|
-
''
|
43
|
-
end
|
44
|
-
|
45
|
-
# build the configuration for the release
|
46
|
-
config = Hash.new
|
47
|
-
config["release_notes"] = notes
|
48
|
-
config["release_changes"] = changes
|
49
|
-
config["preformatted"] = true
|
50
|
-
|
51
|
-
# prepare configuration
|
52
|
-
rf.configure config
|
53
|
-
|
54
|
-
files = FileList["pkg/#{GEM_SPEC.name}-#{GEM_SPEC.version}*.*"].to_a
|
55
|
-
fail "No files found for the release." if files.empty?
|
56
|
-
|
57
|
-
puts "Logging in RubyForge..."
|
58
|
-
rf.login
|
59
|
-
|
60
|
-
puts "Files to upload:"
|
61
|
-
files.each do |f|
|
62
|
-
puts " * #{f}"
|
63
|
-
end
|
64
|
-
|
65
|
-
puts "Releasing #{GEM_SPEC.name} version #{GEM_SPEC.version}..."
|
66
|
-
rf.add_release GEM_SPEC.rubyforge_project, GEM_SPEC.name, GEM_SPEC.version, *files
|
67
|
-
puts "Done."
|
68
|
-
end
|
69
|
-
#Rake::Task['release'].prerequisites.unshift('clean', 'cross', 'native')
|
70
|
-
else
|
71
|
-
warn "no GEM_SPEC is found or defined. 'release' task cannot work without it."
|
9
|
+
desc 'Release all gems (native, binaries for JRuby and Windows)'
|
10
|
+
task :release_all => :build_all do
|
11
|
+
Dir["pkg/do_mysql-#{DataObjects::Mysql::VERSION}*.gem"].each do |gem_path|
|
12
|
+
command = "gem push #{gem_path}"
|
13
|
+
puts "Executing #{command.inspect}:"
|
14
|
+
sh command
|
72
15
|
end
|
73
|
-
else
|
74
|
-
warn "rubyforge gem is required to generate releases, please install it (gem install rubyforge)."
|
75
16
|
end
|
data/tasks/retrieve.rake
CHANGED
data/tasks/spec.rake
CHANGED
@@ -1,19 +1,23 @@
|
|
1
|
-
|
2
|
-
require 'spec/rake/spectask'
|
1
|
+
require 'rake/testtask'
|
3
2
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
3
|
+
spec_defaults = lambda do |spec|
|
4
|
+
spec.libs << 'lib' << 'spec'
|
5
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
6
|
+
spec.verbose = true
|
7
|
+
end
|
8
|
+
|
9
|
+
Rake::TestTask.new(:spec => [ :clean, :compile ], &spec_defaults)
|
10
|
+
Rake::TestTask.new(:spec_no_compile, &spec_defaults)
|
9
11
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
begin
|
13
|
+
require 'rcov/rcovtask'
|
14
|
+
Rcov::RcovTask.new do |spec|
|
15
|
+
spec.libs << 'spec'
|
16
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
17
|
+
spec.verbose = true
|
18
|
+
end
|
19
|
+
rescue LoadError
|
20
|
+
task :rcov do
|
21
|
+
abort 'RCov is not available. In order to run rcov, you must: gem install rcov'
|
18
22
|
end
|
19
23
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: do_mysql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: x86-mswin32-60
|
6
6
|
authors:
|
7
7
|
- Dirkjan Bussink
|
@@ -9,48 +9,38 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-01-09 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: data_objects
|
17
17
|
type: :runtime
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
|
-
- -
|
21
|
+
- - "="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version:
|
23
|
+
version: 0.10.1
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
|
-
name:
|
27
|
-
type: :
|
26
|
+
name: bacon
|
27
|
+
type: :development
|
28
28
|
version_requirement:
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: "1.1"
|
34
34
|
version:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
|
-
name:
|
37
|
-
type: :runtime
|
38
|
-
version_requirement:
|
39
|
-
version_requirements: !ruby/object:Gem::Requirement
|
40
|
-
requirements:
|
41
|
-
- - "="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 0.10.0
|
44
|
-
version:
|
45
|
-
- !ruby/object:Gem::Dependency
|
46
|
-
name: rspec
|
36
|
+
name: rake-compiler
|
47
37
|
type: :development
|
48
38
|
version_requirement:
|
49
39
|
version_requirements: !ruby/object:Gem::Requirement
|
50
40
|
requirements:
|
51
41
|
- - ~>
|
52
42
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
43
|
+
version: "0.7"
|
54
44
|
version:
|
55
45
|
description: Implements the DataObjects API for MySQL
|
56
46
|
email: d.bussink@gmail.com
|
@@ -58,8 +48,10 @@ executables: []
|
|
58
48
|
|
59
49
|
extensions: []
|
60
50
|
|
61
|
-
extra_rdoc_files:
|
62
|
-
|
51
|
+
extra_rdoc_files:
|
52
|
+
- README.markdown
|
53
|
+
- ChangeLog.markdown
|
54
|
+
- LICENSE
|
63
55
|
files:
|
64
56
|
- lib/do_mysql/encoding.rb
|
65
57
|
- lib/do_mysql/transaction.rb
|
@@ -68,7 +60,6 @@ files:
|
|
68
60
|
- spec/command_spec.rb
|
69
61
|
- spec/connection_spec.rb
|
70
62
|
- spec/encoding_spec.rb
|
71
|
-
- spec/lib/rspec_immediate_feedback_formatter.rb
|
72
63
|
- spec/reader_spec.rb
|
73
64
|
- spec/result_spec.rb
|
74
65
|
- spec/spec_helper.rb
|
@@ -82,32 +73,49 @@ files:
|
|
82
73
|
- spec/typecast/float_spec.rb
|
83
74
|
- spec/typecast/integer_spec.rb
|
84
75
|
- spec/typecast/nil_spec.rb
|
76
|
+
- spec/typecast/other_spec.rb
|
85
77
|
- spec/typecast/range_spec.rb
|
86
78
|
- spec/typecast/string_spec.rb
|
87
79
|
- spec/typecast/time_spec.rb
|
88
|
-
- tasks/
|
89
|
-
- tasks/install.rake
|
90
|
-
- tasks/native.rake
|
80
|
+
- tasks/compile.rake
|
91
81
|
- tasks/release.rake
|
92
82
|
- tasks/retrieve.rake
|
93
83
|
- tasks/spec.rake
|
94
84
|
- tasks/ssl.rake
|
95
|
-
- ext/
|
96
|
-
- ext/
|
97
|
-
- ext/
|
85
|
+
- ext/do_mysql/extconf.rb
|
86
|
+
- ext/do_mysql/do_mysql.c
|
87
|
+
- ext/do_mysql/compat.h
|
88
|
+
- ext/do_mysql/error.h
|
98
89
|
- LICENSE
|
99
90
|
- Rakefile
|
100
|
-
-
|
91
|
+
- ChangeLog.markdown
|
101
92
|
- README.markdown
|
102
|
-
-
|
103
|
-
- lib/
|
93
|
+
- lib/do_mysql/1.8/do_mysql.so
|
94
|
+
- lib/do_mysql/1.9/do_mysql.so
|
104
95
|
has_rdoc: false
|
105
|
-
homepage:
|
96
|
+
homepage:
|
106
97
|
licenses: []
|
107
98
|
|
108
|
-
post_install_message:
|
109
|
-
|
110
|
-
|
99
|
+
post_install_message: |+
|
100
|
+
|
101
|
+
======================================================================================================
|
102
|
+
|
103
|
+
You've installed the binary version of do_mysql.
|
104
|
+
It was built using MySQL version 5.0.89.
|
105
|
+
It's recommended to use the exact same version to avoid potential issues.
|
106
|
+
|
107
|
+
At the time of building this gem, the necessary DLL files where available
|
108
|
+
in the following download:
|
109
|
+
|
110
|
+
http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-noinstall-5.0.89-win32.zip/from/pick
|
111
|
+
|
112
|
+
You can put the lib\opt\libmysql.dll available in this package in your Ruby bin
|
113
|
+
directory, for example C:\Ruby\bin
|
114
|
+
|
115
|
+
======================================================================================================
|
116
|
+
|
117
|
+
rdoc_options:
|
118
|
+
- --charset=UTF-8
|
111
119
|
require_paths:
|
112
120
|
- lib
|
113
121
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -129,5 +137,24 @@ rubygems_version: 1.3.5
|
|
129
137
|
signing_key:
|
130
138
|
specification_version: 3
|
131
139
|
summary: DataObjects MySQL Driver
|
132
|
-
test_files:
|
133
|
-
|
140
|
+
test_files:
|
141
|
+
- spec/command_spec.rb
|
142
|
+
- spec/connection_spec.rb
|
143
|
+
- spec/encoding_spec.rb
|
144
|
+
- spec/reader_spec.rb
|
145
|
+
- spec/result_spec.rb
|
146
|
+
- spec/spec_helper.rb
|
147
|
+
- spec/typecast/array_spec.rb
|
148
|
+
- spec/typecast/bigdecimal_spec.rb
|
149
|
+
- spec/typecast/boolean_spec.rb
|
150
|
+
- spec/typecast/byte_array_spec.rb
|
151
|
+
- spec/typecast/class_spec.rb
|
152
|
+
- spec/typecast/date_spec.rb
|
153
|
+
- spec/typecast/datetime_spec.rb
|
154
|
+
- spec/typecast/float_spec.rb
|
155
|
+
- spec/typecast/integer_spec.rb
|
156
|
+
- spec/typecast/nil_spec.rb
|
157
|
+
- spec/typecast/other_spec.rb
|
158
|
+
- spec/typecast/range_spec.rb
|
159
|
+
- spec/typecast/string_spec.rb
|
160
|
+
- spec/typecast/time_spec.rb
|
data/HISTORY.markdown
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
## 0.10.0 2009-10-15
|
2
|
-
* Improvements
|
3
|
-
* JRuby Support (using *do_jdbc*)
|
4
|
-
|
5
|
-
## 0.9.12 2009-05-17
|
6
|
-
* Improvements
|
7
|
-
* Windows support
|
8
|
-
|
9
|
-
## 0.9.11 2009-01-19
|
10
|
-
* Improvements
|
11
|
-
* Ruby 1.9 support
|
12
|
-
* Fixes
|
13
|
-
* Reconnecting now works properly
|
14
|
-
|
15
|
-
## 0.9.9 2008-11-27
|
16
|
-
* Improvements
|
17
|
-
* Added initial support for Ruby 1.9 [John Harrison]
|
data/Manifest.txt
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
.gitignore
|
2
|
-
HISTORY.markdown
|
3
|
-
LICENSE
|
4
|
-
Manifest.txt
|
5
|
-
README.markdown
|
6
|
-
Rakefile
|
7
|
-
buildfile
|
8
|
-
ext-java/src/main/java/DoMysqlExtService.java
|
9
|
-
ext-java/src/main/java/do_mysql/MySqlDriverDefinition.java
|
10
|
-
ext/.gitignore
|
11
|
-
ext/do_mysql_ext/do_mysql_ext.c
|
12
|
-
ext/do_mysql_ext/extconf.rb
|
13
|
-
lib/do_mysql.rb
|
14
|
-
lib/do_mysql/transaction.rb
|
15
|
-
lib/do_mysql/version.rb
|
16
|
-
spec/command_spec.rb
|
17
|
-
spec/connection_spec.rb
|
18
|
-
spec/reader_spec.rb
|
19
|
-
spec/result_spec.rb
|
20
|
-
spec/spec.opts
|
21
|
-
spec/spec_helper.rb
|
22
|
-
spec/typecast/bigdecimal_spec.rb
|
23
|
-
spec/typecast/boolean_spec.rb
|
24
|
-
spec/typecast/byte_array_spec.rb
|
25
|
-
spec/typecast/class_spec.rb
|
26
|
-
spec/typecast/date_spec.rb
|
27
|
-
spec/typecast/datetime_spec.rb
|
28
|
-
spec/typecast/float_spec.rb
|
29
|
-
spec/typecast/integer_spec.rb
|
30
|
-
spec/typecast/nil_spec.rb
|
31
|
-
spec/typecast/string_spec.rb
|
32
|
-
spec/typecast/time_spec.rb
|
data/lib/do_mysql_ext.so
DELETED
Binary file
|
data/tasks/gem.rake
DELETED
data/tasks/install.rake
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
def sudo_gem(cmd)
|
2
|
-
sh "#{SUDO} #{RUBY} -S gem #{cmd}", :verbose => false
|
3
|
-
end
|
4
|
-
|
5
|
-
# Installation
|
6
|
-
|
7
|
-
desc "Install #{GEM_SPEC.name} #{GEM_SPEC.version}"
|
8
|
-
task :install => [ :package ] do
|
9
|
-
sudo_gem "install pkg/#{GEM_SPEC.name}-#{GEM_SPEC.version} --no-update-sources"
|
10
|
-
end
|
11
|
-
|
12
|
-
desc "Uninstall #{GEM_SPEC.name} #{GEM_SPEC.version}"
|
13
|
-
task :uninstall => [ :clean ] do
|
14
|
-
sudo_gem "uninstall #{GEM_SPEC.name} -v#{GEM_SPEC.version} -I -x"
|
15
|
-
end
|
data/tasks/native.rake
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
begin
|
2
|
-
gem('rake-compiler')
|
3
|
-
require 'rake/extensiontask'
|
4
|
-
|
5
|
-
Rake::ExtensionTask.new('do_mysql_ext', GEM_SPEC) do |ext|
|
6
|
-
|
7
|
-
mysql_lib = File.expand_path(File.join(File.dirname(__FILE__), '..', 'vendor', "mysql-#{BINARY_VERSION}-win32"))
|
8
|
-
|
9
|
-
# automatically add build options to avoid need of manual input
|
10
|
-
if RUBY_PLATFORM =~ /mswin|mingw/ then
|
11
|
-
ext.config_options << "--with-mysql-include=#{mysql_lib}/include"
|
12
|
-
ext.config_options << "--with-mysql-lib=#{mysql_lib}/lib/opt"
|
13
|
-
else
|
14
|
-
ext.cross_compile = true
|
15
|
-
ext.cross_platform = ['x86-mingw32', 'x86-mswin32-60']
|
16
|
-
ext.cross_config_options << "--with-mysql-include=#{mysql_lib}/include"
|
17
|
-
ext.cross_config_options << "--with-mysql-lib=#{mysql_lib}/lib/opt"
|
18
|
-
end
|
19
|
-
|
20
|
-
end
|
21
|
-
rescue LoadError
|
22
|
-
warn "To cross-compile, install rake-compiler (gem install rake-compiler)"
|
23
|
-
|
24
|
-
if (tasks_dir = ROOT.parent + 'tasks').directory?
|
25
|
-
require tasks_dir + 'ext_helper'
|
26
|
-
require tasks_dir + 'ext_helper_java'
|
27
|
-
|
28
|
-
setup_c_extension("#{GEM_SPEC.name}_ext", GEM_SPEC)
|
29
|
-
setup_java_extension("#{GEM_SPEC.name}_ext", GEM_SPEC)
|
30
|
-
end
|
31
|
-
end
|