activerecord-jdbcmysql-adapter 1.2.5 → 1.2.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.
@@ -1,2 +1,6 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# NOTE: required by AR resolver with 'jdbcmysql' adapter configuration :
|
2
|
+
# require "active_record/connection_adapters/#{spec[:adapter]}_adapter"
|
3
|
+
# we should make sure a jdbcmysql_connection is setup on ActiveRecord::Base
|
4
|
+
require 'arjdbc/mysql'
|
5
|
+
# all setup should be performed in arjdbc/mysql to avoid circular requires
|
6
|
+
# this should not be required from any loads perormed by arjdbc/mysql code
|
metadata
CHANGED
@@ -1,85 +1,81 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-jdbcmysql-adapter
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
version: 1.2.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 1.2.6
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
- Nick Sieger, Ola Bini and JRuby contributors
|
9
|
-
autorequire:
|
7
|
+
authors:
|
8
|
+
- Nick Sieger, Ola Bini and JRuby contributors
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
none: false
|
38
|
-
requirement: !ruby/object:Gem::Requirement
|
39
|
-
requirements:
|
40
|
-
- - ~>
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: 5.1.0
|
43
|
-
none: false
|
44
|
-
prerelease: false
|
45
|
-
type: :runtime
|
12
|
+
|
13
|
+
date: 2013-02-01 00:00:00 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: activerecord-jdbc-adapter
|
17
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.2.6
|
23
|
+
requirement: *id001
|
24
|
+
prerelease: false
|
25
|
+
type: :runtime
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: jdbc-mysql
|
28
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 5.1.0
|
34
|
+
requirement: *id002
|
35
|
+
prerelease: false
|
36
|
+
type: :runtime
|
46
37
|
description: Install this gem to use MySQL with JRuby on Rails.
|
47
38
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
48
39
|
executables: []
|
40
|
+
|
49
41
|
extensions: []
|
42
|
+
|
50
43
|
extra_rdoc_files: []
|
51
|
-
|
52
|
-
|
53
|
-
-
|
54
|
-
-
|
55
|
-
-
|
44
|
+
|
45
|
+
files:
|
46
|
+
- Rakefile
|
47
|
+
- README.txt
|
48
|
+
- LICENSE.txt
|
49
|
+
- lib/active_record/connection_adapters/jdbcmysql_adapter.rb
|
56
50
|
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
57
51
|
licenses: []
|
58
|
-
|
52
|
+
|
53
|
+
post_install_message:
|
59
54
|
rdoc_options: []
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
- - ! '>='
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
segments:
|
67
|
-
- 0
|
68
|
-
hash: 2
|
69
|
-
version: !binary |-
|
70
|
-
MA==
|
55
|
+
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
71
59
|
none: false
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
hash: 2
|
64
|
+
segments:
|
65
|
+
- 0
|
66
|
+
version: "0"
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
68
|
none: false
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: "0"
|
79
73
|
requirements: []
|
74
|
+
|
80
75
|
rubyforge_project: jruby-extras
|
81
76
|
rubygems_version: 1.8.24
|
82
|
-
signing_key:
|
77
|
+
signing_key:
|
83
78
|
specification_version: 3
|
84
79
|
summary: MySQL JDBC adapter for JRuby on Rails.
|
85
80
|
test_files: []
|
81
|
+
|