activerecord-jdbcderby-adapter 0.9.3-java

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/jdbcderby_adapter.rb
data/README.txt ADDED
@@ -0,0 +1,7 @@
1
+ = activerecord-jdbcderby-adapter
2
+
3
+ * http://jruby-extras.rubyforge.org/activerecord-jdbc-adapter/
4
+
5
+ == DESCRIPTION:
6
+
7
+ This is an ActiveRecord driver for Derby using JDBC running under JRuby.
data/Rakefile ADDED
@@ -0,0 +1,39 @@
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/derby/lib"
11
+ require "jdbc/derby"
12
+
13
+ begin
14
+ require 'hoe'
15
+ Hoe.plugin :gemcutter
16
+ hoe = Hoe.spec("activerecord-jdbcderby-adapter") do |p|
17
+ p.version = JdbcAdapter::Version::VERSION
18
+ p.spec_extras[:platform] = Gem::Platform.new("java")
19
+ p.rubyforge_name = "jruby-extras"
20
+ p.url = "http://jruby-extras.rubyforge.org/ActiveRecord-JDBC"
21
+ p.author = "Nick Sieger, Ola Bini and JRuby contributors"
22
+ p.email = "nick@nicksieger.com, ola.bini@gmail.com"
23
+ p.summary = "Derby JDBC adapter for JRuby on Rails."
24
+ p.changes = "Updated to Derby version #{Jdbc::Derby::VERSION}."
25
+ p.description = "Install this gem to use Derby with JRuby on Rails."
26
+ p.extra_deps += [
27
+ ['activerecord-jdbc-adapter', "= #{JdbcAdapter::Version::VERSION}"],
28
+ ['jdbc-derby', ">= #{Jdbc::Derby::VERSION}"]]
29
+ end
30
+ hoe.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
31
+ task :gemspec do
32
+ File.open("#{hoe.name}.gemspec", "w") {|f| f << hoe.spec.to_ruby }
33
+ end
34
+ task :package => :gemspec
35
+ rescue LoadError
36
+ puts "You really need Hoe installed to be able to package this gem"
37
+ rescue => e
38
+ puts "ignoring error while loading hoe: #{e.to_s}"
39
+ 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/derby"
14
+ rescue LoadError
15
+ raise if tried_gem
16
+ require 'rubygems'
17
+ gem "jdbc-derby"
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 :jdbcderby_connection, :derby_connection
28
+ end
29
+ end
30
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activerecord-jdbcderby-adapter
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 9
8
+ - 3
9
+ version: 0.9.3
10
+ platform: java
11
+ authors:
12
+ - Nick Sieger, Ola Bini and JRuby contributors
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-02-23 00:00:00 -06:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: activerecord-jdbc-adapter
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ - 9
30
+ - 3
31
+ version: 0.9.3
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: jdbc-derby
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 10
43
+ - 5
44
+ - 3
45
+ - 0
46
+ version: 10.5.3.0
47
+ type: :runtime
48
+ version_requirements: *id002
49
+ description: Install this gem to use Derby with JRuby on Rails.
50
+ email: nick@nicksieger.com, ola.bini@gmail.com
51
+ executables: []
52
+
53
+ extensions: []
54
+
55
+ extra_rdoc_files:
56
+ - Manifest.txt
57
+ - README.txt
58
+ - LICENSE.txt
59
+ files:
60
+ - Manifest.txt
61
+ - Rakefile
62
+ - README.txt
63
+ - LICENSE.txt
64
+ - lib/active_record/connection_adapters/jdbcderby_adapter.rb
65
+ has_rdoc: true
66
+ homepage: http://jruby-extras.rubyforge.org/ActiveRecord-JDBC
67
+ licenses: []
68
+
69
+ post_install_message:
70
+ rdoc_options:
71
+ - --main
72
+ - README.txt
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ segments:
80
+ - 0
81
+ version: "0"
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ segments:
87
+ - 0
88
+ version: "0"
89
+ requirements: []
90
+
91
+ rubyforge_project: jruby-extras
92
+ rubygems_version: 1.3.6
93
+ signing_key:
94
+ specification_version: 3
95
+ summary: Derby JDBC adapter for JRuby on Rails.
96
+ test_files: []
97
+