activerecord-jdbcmysql-adapter-ficoh 1.3.21

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7c999c888902ec9f5de3b4cf060db919e79cbf16
4
+ data.tar.gz: 0c6c2307a44d8e79298f0b8ef11f553e7857f2e6
5
+ SHA512:
6
+ metadata.gz: 792b1f86c596e85e7aeaa1a998f3bddb6cc8999505281640c56bd763971f475038a51e7f288c6f59bf210ca181ad7cc40297744220eec2012f8554e98eec4be5
7
+ data.tar.gz: 19e94c1f1f6456f3c59fff4337365e19e42d371f1917ab90ad234955e62e6e3bc6d9e658d8c89332adf8bf8700fc13c3162895482bbe7603849583b279699d7e
File without changes
@@ -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.
@@ -0,0 +1,7 @@
1
+ = activerecord-jdbcmysql-adapter
2
+
3
+ * https://github.com/jruby/activerecord-jdbc-adapter/
4
+
5
+ == DESCRIPTION:
6
+
7
+ This is an ActiveRecord driver for MySQL using JDBC running under JRuby.
@@ -0,0 +1,3 @@
1
+ require 'bundler/gem_helper'
2
+ Bundler::GemHelper.install_tasks
3
+ require File.expand_path '../../rakelib/bundler_ext', __FILE__
@@ -0,0 +1,24 @@
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 |gem|
7
+ gem.name = "activerecord-jdbcmysql-adapter-ficoh"
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"
15
+
16
+ gem.rubyforge_project = %q{jruby-extras}
17
+ gem.summary = %q{MySQL JDBC adapter for JRuby on Rails.}
18
+
19
+ gem.require_paths = ["lib"]
20
+ gem.files = `git ls-files`.split("\n") # assuming . working directory
21
+
22
+ gem.add_dependency 'activerecord-jdbc-adapter-ficoh', "~>#{version}"
23
+ gem.add_dependency 'jdbc-mysql', '>= 5.1.22'
24
+ end
@@ -0,0 +1,6 @@
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 performed by arjdbc/mysql code
@@ -0,0 +1,3 @@
1
+ # NOTE: here for Bundler to auto-load the gem unless :require => false
2
+ require 'arjdbc'
3
+ require 'arjdbc/mysql'
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activerecord-jdbcmysql-adapter-ficoh
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.21
5
+ platform: ruby
6
+ authors:
7
+ - Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-05-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: 1.3.21
19
+ name: activerecord-jdbc-adapter-ficoh
20
+ prerelease: false
21
+ type: :runtime
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.3.21
27
+ - !ruby/object:Gem::Dependency
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 5.1.22
33
+ name: jdbc-mysql
34
+ prerelease: false
35
+ type: :runtime
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 5.1.22
41
+ description:
42
+ email:
43
+ - nick@nicksieger.com
44
+ - ola.bini@gmail.com
45
+ - self@kares.org
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - History.txt
51
+ - LICENSE.txt
52
+ - README.txt
53
+ - Rakefile
54
+ - activerecord-jdbcmysql-adapter.gemspec
55
+ - lib/active_record/connection_adapters/jdbcmysql_adapter.rb
56
+ - lib/activerecord-jdbcmysql-adapter.rb
57
+ homepage: https://github.com/jruby/activerecord-jdbc-adapter
58
+ licenses:
59
+ - BSD
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project: jruby-extras
77
+ rubygems_version: 2.4.8
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: MySQL JDBC adapter for JRuby on Rails.
81
+ test_files: []