do_mysql 0.9.12-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt ADDED
@@ -0,0 +1,9 @@
1
+ == 0.9.11 2009-01-19
2
+ * Improvements
3
+ * Ruby 1.9 support
4
+ * Fixes
5
+ * Reconnecting now works properly
6
+
7
+ == 0.9.9 2008-11-27
8
+ * Improvements
9
+ * Added initial support for Ruby 1.9 [John Harrison]
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2007, 2008, 2009 Yehuda Katz, Dirkjan Bussink
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Manifest.txt ADDED
@@ -0,0 +1,32 @@
1
+ .gitignore
2
+ History.txt
3
+ LICENSE
4
+ Manifest.txt
5
+ README.txt
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/README.txt ADDED
@@ -0,0 +1,3 @@
1
+ = do_mysql
2
+
3
+ A MySQL driver for DataObjects
data/Rakefile ADDED
@@ -0,0 +1,16 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'rake/clean'
4
+
5
+ require 'pathname'
6
+ require 'lib/do_mysql/version'
7
+
8
+ ROOT = Pathname(__FILE__).dirname.expand_path
9
+ JRUBY = RUBY_PLATFORM =~ /java/
10
+ WINDOWS = Gem.win_platform?
11
+ SUDO = (WINDOWS || JRUBY) ? '' : ('sudo' unless ENV['SUDOLESS'])
12
+ BINARY_VERSION = '5.0.77'
13
+
14
+ Dir['tasks/*.rake'].each { |f| import f }
15
+
16
+ CLEAN.include(%w[ {tmp,pkg}/ **/*.{o,so,bundle,jar,log,a,gem,dSYM,obj,pdb,exp,DS_Store,rbc,db} ext/do_mysql_ext/Makefile ext-java/target ])