activerecord-jdbcmysql-adapter 1.3.4 → 1.3.5
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 +4 -4
- data/activerecord-jdbcmysql-adapter.gemspec +15 -14
- metadata +12 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 735b67a10b03f59bdb0afda79e499e2a73eb7ff4
|
|
4
|
+
data.tar.gz: 8ede16582c3ccd8b41cae10901b5c6bcb2815688
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bbc3caeb56763866d94c44af722cd8d08ba540a79f6fbbe11ea4631b8ff223566fdc605d79cfc97fa692d0e5e6103bcae86f5fc2ae518334212aa63b064a249
|
|
7
|
+
data.tar.gz: 4f78a8dc1909436e32bc695ee8116b2fc0596de3327efb099cbb3d6c89f78723ed7cf6669733820b82e8c2ea3329a9fbc90ddc8100fe18f45d8de376e58b4c0b
|
|
@@ -3,21 +3,22 @@ arjdbc_lib = File.expand_path("../../lib", __FILE__)
|
|
|
3
3
|
$:.push arjdbc_lib unless $:.include?(arjdbc_lib)
|
|
4
4
|
require 'arjdbc/version'
|
|
5
5
|
|
|
6
|
-
Gem::Specification.new do |
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
Gem::Specification.new do |gem|
|
|
7
|
+
gem.name = "activerecord-jdbcmysql-adapter"
|
|
8
|
+
gem.version = version = ArJdbc::VERSION
|
|
9
|
+
gem.platform = Gem::Platform::RUBY
|
|
10
|
+
|
|
11
|
+
gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
|
|
12
|
+
gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
|
|
13
|
+
gem.homepage = 'https://github.com/jruby/activerecord-jdbc-adapter'
|
|
14
|
+
gem.license = "BSD"
|
|
13
15
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
s.summary = %q{MySQL JDBC adapter for JRuby on Rails.}
|
|
16
|
+
gem.rubyforge_project = %q{jruby-extras}
|
|
17
|
+
gem.summary = %q{MySQL JDBC adapter for JRuby on Rails.}
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
gem.require_paths = ["lib"]
|
|
20
|
+
gem.files = `git ls-files`.split("\n") # assuming . working directory
|
|
20
21
|
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
gem.add_dependency 'activerecord-jdbc-adapter', "~>#{version}"
|
|
23
|
+
gem.add_dependency 'jdbc-mysql', '>= 5.1.22'
|
|
23
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activerecord-jdbcmysql-adapter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Nick Sieger, Ola Bini and JRuby contributors
|
|
7
|
+
- Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord-jdbc-adapter
|
|
@@ -16,12 +16,12 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.3.
|
|
19
|
+
version: 1.3.5
|
|
20
20
|
requirement: !ruby/object:Gem::Requirement
|
|
21
21
|
requirements:
|
|
22
22
|
- - ~>
|
|
23
23
|
- !ruby/object:Gem::Version
|
|
24
|
-
version: 1.3.
|
|
24
|
+
version: 1.3.5
|
|
25
25
|
prerelease: false
|
|
26
26
|
type: :runtime
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -38,8 +38,11 @@ dependencies:
|
|
|
38
38
|
version: 5.1.22
|
|
39
39
|
prerelease: false
|
|
40
40
|
type: :runtime
|
|
41
|
-
description:
|
|
42
|
-
email:
|
|
41
|
+
description:
|
|
42
|
+
email:
|
|
43
|
+
- nick@nicksieger.com
|
|
44
|
+
- ola.bini@gmail.com
|
|
45
|
+
- self@kares.org
|
|
43
46
|
executables: []
|
|
44
47
|
extensions: []
|
|
45
48
|
extra_rdoc_files: []
|
|
@@ -52,7 +55,8 @@ files:
|
|
|
52
55
|
- lib/active_record/connection_adapters/jdbcmysql_adapter.rb
|
|
53
56
|
- lib/activerecord-jdbcmysql-adapter.rb
|
|
54
57
|
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
|
55
|
-
licenses:
|
|
58
|
+
licenses:
|
|
59
|
+
- BSD
|
|
56
60
|
metadata: {}
|
|
57
61
|
post_install_message:
|
|
58
62
|
rdoc_options: []
|