activerecord-jdbcas400-adapter 1.3.3
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.txt +7 -0
- data/Rakefile +3 -0
- data/activerecord-jdbcas400-adapter.gemspec +23 -0
- data/lib/active_record/connection_adapters/jdbcas400_adapter.rb +6 -0
- data/lib/activerecord-jdbcas400-adapter.rb +3 -0
- metadata +76 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: de063187e8fd1984079f6e2bfcc485b9a717ed58
|
|
4
|
+
data.tar.gz: 81a99fe425e6ea08f29c9cdf50f372fdabd117d7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9c39251dfa259f2639f60e0fa5f4e3c96478ba46227d105b290104d6a1b9815b9a2f498c50d3eb3de78b3b9f7773ee277ec6f77c5a8fe55c558492d97a1e62fb
|
|
7
|
+
data.tar.gz: 0a6d5e4fe870299a81573b2f234a42423c704288d4dd2277c81f8320113c0d8b8f80f0cf22daa881a62beb1f470d67eef4a4872fa78839124dca802308b5a10d
|
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/README.txt
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
arjdbc_lib = File.expand_path("../../lib", __FILE__)
|
|
3
|
+
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
|
|
4
|
+
require 'arjdbc/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = "activerecord-jdbcas400-adapter"
|
|
8
|
+
s.version = version = ArJdbc::VERSION
|
|
9
|
+
s.platform = Gem::Platform::RUBY
|
|
10
|
+
s.authors = ["Nick Sieger, Ola Bini, Pierrick Rouxel and JRuby contributors"]
|
|
11
|
+
s.description = %q{Install this gem to use AS/400 with JRuby on Rails.}
|
|
12
|
+
s.email = %q{nick@nicksieger.com, ola.bini@gmail.com}
|
|
13
|
+
|
|
14
|
+
s.homepage = %q{https://github.com/jruby/activerecord-jdbc-adapter}
|
|
15
|
+
s.rubyforge_project = %q{jruby-extras}
|
|
16
|
+
s.summary = %q{AS/400 JDBC adapter for JRuby on Rails.}
|
|
17
|
+
|
|
18
|
+
s.require_paths = ["lib"]
|
|
19
|
+
s.files = `git ls-files`.split("\n") # assuming . working directory
|
|
20
|
+
|
|
21
|
+
s.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
|
|
22
|
+
s.add_dependency 'jdbc-as400', '>= 7.10'
|
|
23
|
+
end
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# NOTE: required by AR resolver with 'jdbcas400' adapter configuration :
|
|
2
|
+
# we should make sure a jdbcas400db2_connection is setup on ActiveRecord::Base
|
|
3
|
+
require 'arjdbc/db2'
|
|
4
|
+
require 'arjdbc/db2/as400'
|
|
5
|
+
# all setup should be performed in arjdbc/db2 to avoid circular requires
|
|
6
|
+
# this should not be required from any loads perormed by arjdbc/db2 code
|
metadata
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: activerecord-jdbcas400-adapter
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.3.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Nick Sieger, Ola Bini, Pierrick Rouxel and JRuby contributors
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-12-10 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: activerecord-jdbc-adapter
|
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 1.3.3
|
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
|
21
|
+
requirements:
|
|
22
|
+
- - ~>
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: 1.3.3
|
|
25
|
+
prerelease: false
|
|
26
|
+
type: :runtime
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: jdbc-as400
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '7.10'
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - '>='
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '7.10'
|
|
39
|
+
prerelease: false
|
|
40
|
+
type: :runtime
|
|
41
|
+
description: Install this gem to use AS/400 with JRuby on Rails.
|
|
42
|
+
email: nick@nicksieger.com, ola.bini@gmail.com
|
|
43
|
+
executables: []
|
|
44
|
+
extensions: []
|
|
45
|
+
extra_rdoc_files: []
|
|
46
|
+
files:
|
|
47
|
+
- LICENSE.txt
|
|
48
|
+
- README.txt
|
|
49
|
+
- Rakefile
|
|
50
|
+
- activerecord-jdbcas400-adapter.gemspec
|
|
51
|
+
- lib/active_record/connection_adapters/jdbcas400_adapter.rb
|
|
52
|
+
- lib/activerecord-jdbcas400-adapter.rb
|
|
53
|
+
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
|
54
|
+
licenses: []
|
|
55
|
+
metadata: {}
|
|
56
|
+
post_install_message:
|
|
57
|
+
rdoc_options: []
|
|
58
|
+
require_paths:
|
|
59
|
+
- lib
|
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
requirements:
|
|
62
|
+
- - '>='
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: '0'
|
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - '>='
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
requirements: []
|
|
71
|
+
rubyforge_project: jruby-extras
|
|
72
|
+
rubygems_version: 2.1.11
|
|
73
|
+
signing_key:
|
|
74
|
+
specification_version: 4
|
|
75
|
+
summary: AS/400 JDBC adapter for JRuby on Rails.
|
|
76
|
+
test_files: []
|