activerecord-jdbcmysql-adapter 0.6

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/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ Copyright (c) 2006-2007 Nick Sieger <nick@nicksieger.com>
2
+ Copyright (c) 2006-2007 Ola Bini <ola@ologix.com>
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining
5
+ a copy of this software and associated documentation files (the
6
+ "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish,
8
+ distribute, sublicense, and/or sell copies of the Software, and to
9
+ permit persons to whom the Software is furnished to do so, subject to
10
+ the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Manifest.txt ADDED
@@ -0,0 +1,7 @@
1
+ Manifest.txt
2
+ Rakefile
3
+ README.txt
4
+ LICENSE.txt
5
+ lib/active_record
6
+ lib/active_record/connection_adapters
7
+ lib/active_record/connection_adapters/jdbcmysql_adapter.rb
data/README.txt ADDED
@@ -0,0 +1,5 @@
1
+ This is an ActiveRecord driver for MySQL using JDBC running under JRuby. Please see
2
+
3
+ http://jruby-extras.rubyforge.org/activerecord-jdbc-adapter/
4
+
5
+ for more information.
data/Rakefile ADDED
@@ -0,0 +1,31 @@
1
+ MANIFEST = FileList["Manifest.txt", "Rakefile", "README.txt", "LICENSE.txt", "lib/**/*"]
2
+
3
+ file "Manifest.txt" => :manifest
4
+ task :manifest do
5
+ File.open("Manifest.txt", "w") {|f| MANIFEST.each {|n| f << "#{n}\n"} }
6
+ end
7
+ Rake::Task['manifest'].invoke
8
+
9
+ require File.dirname(__FILE__) + "/../../lib/jdbc_adapter/version"
10
+ $LOAD_PATH << File.dirname(__FILE__) + "/../../drivers/mysql/lib"
11
+ require "jdbc/mysql"
12
+
13
+ begin
14
+ require 'hoe'
15
+ Hoe.new("activerecord-jdbcmysql-adapter", JdbcAdapter::Version::VERSION) do |p|
16
+ p.rubyforge_name = "jruby-extras"
17
+ p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
18
+ p.author = "Nick Sieger, Ola Bini and JRuby contributors"
19
+ p.email = "nick@nicksieger.com, ola.bini@gmail.com"
20
+ p.summary = "MySQL JDBC adapter for JRuby on Rails."
21
+ p.changes = "Updated to MySQL version #{Jdbc::MySQL::VERSION}."
22
+ p.description = "Install this gem to use MySQL with JRuby on Rails."
23
+ p.extra_deps += [
24
+ ['activerecord-jdbc-adapter', ">= #{JdbcAdapter::Version::VERSION}"],
25
+ ['jdbc-mysql', ">= #{Jdbc::MySQL::VERSION}"]]
26
+ end.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
27
+ rescue LoadError
28
+ puts "You really need Hoe installed to be able to package this gem"
29
+ rescue => e
30
+ puts "ignoring error while loading hoe: #{e.to_s}"
31
+ end
@@ -0,0 +1,30 @@
1
+ tried_gem = false
2
+ begin
3
+ require "jdbc_adapter"
4
+ rescue LoadError
5
+ raise if tried_gem
6
+ require 'rubygems'
7
+ gem "activerecord-jdbc-adapter"
8
+ tried_gem = true
9
+ retry
10
+ end
11
+ tried_gem = false
12
+ begin
13
+ require "jdbc/mysql"
14
+ rescue LoadError
15
+ raise if tried_gem
16
+ require 'rubygems'
17
+ gem "jdbc-mysql"
18
+ tried_gem = true
19
+ retry
20
+ end
21
+
22
+ require 'active_record/connection_adapters/jdbc_adapter'
23
+
24
+ module ActiveRecord
25
+ class Base
26
+ class << self
27
+ alias_method :jdbcmysql_connection, :mysql_connection
28
+ end
29
+ end
30
+ end
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.4
3
+ specification_version: 1
4
+ name: activerecord-jdbcmysql-adapter
5
+ version: !ruby/object:Gem::Version
6
+ version: "0.6"
7
+ date: 2007-11-05 00:00:00 -06:00
8
+ summary: MySQL JDBC adapter for JRuby on Rails.
9
+ require_paths:
10
+ - lib
11
+ email: nick@nicksieger.com, ola.bini@gmail.com
12
+ homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
13
+ rubyforge_project: jruby-extras
14
+ description: Install this gem to use MySQL with JRuby on Rails.
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - Nick Sieger, Ola Bini and JRuby contributors
31
+ files:
32
+ - Manifest.txt
33
+ - Rakefile
34
+ - README.txt
35
+ - LICENSE.txt
36
+ - lib/active_record
37
+ - lib/active_record/connection_adapters
38
+ - lib/active_record/connection_adapters/jdbcmysql_adapter.rb
39
+ test_files: []
40
+
41
+ rdoc_options:
42
+ - --main
43
+ - README.txt
44
+ extra_rdoc_files:
45
+ - Manifest.txt
46
+ - README.txt
47
+ - LICENSE.txt
48
+ executables: []
49
+
50
+ extensions: []
51
+
52
+ requirements: []
53
+
54
+ dependencies:
55
+ - !ruby/object:Gem::Dependency
56
+ name: activerecord-jdbc-adapter
57
+ version_requirement:
58
+ version_requirements: !ruby/object:Gem::Version::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: "0.6"
63
+ version:
64
+ - !ruby/object:Gem::Dependency
65
+ name: jdbc-mysql
66
+ version_requirement:
67
+ version_requirements: !ruby/object:Gem::Version::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: 5.0.4
72
+ version: